Giter Club home page Giter Club logo

extensible's Introduction

Howdy

I lead engineering teams and build stuff, not always in that order.

Twitter Follow

BEW

extensible's People

Contributors

bmoeskau avatar dusek avatar gsidler avatar mattsmith321 avatar mikearmstrong1 avatar nebbian avatar nsams avatar nsolsen avatar oniram88 avatar reggino avatar satishkn avatar varunachar avatar yassinajdi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

extensible's Issues

Trying to load Ext4 only when needed.

Ladies & Gentlemen,

I´m trying to load Ext + the calendar JS only when needed as it´s only a small part of my app. Trying to acompish that has been tough so far, but I could get Ext to work fine when loaded later on. (http://stackoverflow.com/questions/7044576/loading-ext-js4-only-when-needed-problem-with-ext-onready)

Now I´m trying to get the Calendar work but I´m stuck.

This is the working example code (basically from the examples, I had to load it to my own domain as 1.5 examples where not up yet):
http://jsfiddle.net/thomasf1/qCLcS/8/

What I´m trying to do is this: (only partly working using a workaround gathered in the stackoverflow thread)
http://jsfiddle.net/thomasf1/qCLcS/10/

What I´ve tried also:

  • Using other loaders than jQuery
  • Preloading all other files with jQuery (e.g. Calendars.js)

It would be great if there would be a fix to make it work,
Thomas

Offset calculation in CalendarView.setViewBounds

Current implementation:

var start = startDate || this.startDate,
offset = start.getDay() - this.startDay;

This fails when startDay is monday(1) and current day is sunday(0). The weekview shows next week initially and also if today button is clicked.
Can be fixed with something like this:

offset = ((start.getDay() - this.startDay) % 7 + 7) % 7

Undefined is not an object while evaluating 'Extensible.calendar.view.AbstractCalendar' and 'Extensible.calendar.data.EventMappings'

Hello,

with latest master (fa6728b), but not the very previous commit (c2e92b4), I get the following errors:

extensible-lang-cs.js:8: TypeError: 'undefined' is not an object (evaluating 'Extensible.calendar.view.AbstractCalendar')
calendar.js: TypeError: 'undefined' is not an object (evaluating 'Extensible.calendar.data.EventMappings')

I tested with Chrome 12 and Safari 5.1 on Mac OS X 10.6.8.

When using English, I get the same error at extensible-lang-en.js:17.

calendar.js is my own code, which does this:

Ext.require([
    'Ext.data.proxy.Ajax',
    'Extensible.calendar.data.EventStore',
    'Extensible.calendar.data.MemoryCalendarStore',
    'Extensible.calendar.CalendarPanel',
    'Extensible.calendar.data.EventMappings',
    'Extensible.calendar.data.CalendarMappings'
]);

Ext.onReady(function(){
    // comments

    var M = Extensible.calendar.data.EventMappings; // <<< HERE IT FAILS

    // setup the calendar widget and render it to a <div>
});

I include these files related to Extensible directly using the <script> tag in <head>, in this order:

ext-all-debug.js
extjs-paths.js (my file which sets up paths for Ext loader)
extensible-all-debug.js
ext-lang-cs.js
extensible-lang-cs.js
calendar.js (my file which sets up the calendar widget and renders it to a div)

Please let me know if you need more information.

ext calendar 1.5 not working

1.5 version is not working when i downloaded it. not even the basic examples are working. what might be the issue?

List all events with recurrences?

Hi,

I'm currently looking into finding a good solution for my project which shows repeating events and has to handle recurrence.

Your library looks good so I might steal some bits and bobs but I was wondering how you would do something like:

  • Listing all events in a list view or calendar. So not just the initial event but all occurrences.
  • Find events for a specific date. I.e. you select a day in a calendar and you want to see all events that are happening that day.

I would appreciate your input :)

David

Built files are missing

Your examples are refferencing the built files but these are missing from git/archive
i.e. <script type="text/javascript" src="../../extensible-all-debug.js"></script>
And since your build doesn't yet work on windows, it's hard to test/see them.
Could you please add them?

How to reload store at week view or day view (1.5.1)

sorry for my bad english

I use my own way to save event. After event saved I need to reload data. At month view page, I can call getActiveView and use 'refresh' method to reload store with startDate and endDate as parameters.

But, at week view page or day view page, there is no effect. It seems that both of those page call 'refresh' method from 'Extensible.calendar.view.Day' which won't call 'reloadStore' method.

Truly, I can use store.load() instead and use getViewBounds to fetch startDate and endDate. But, I don't think it's the best way.

Doubled todayText

In extensible-all-debug.js I have found todayText doubled in the same class (Ext.ensible.cal.CalendarPanel row 5665 and 5685).

Project abandoned?

Is this project abandoned? Too many pull request, and no release for Ext JS 5 or 6

Missing Plugins?

In your test-application code I can see commented the following lines:
plugins: [{
ptype: 'ext.ensible.cal.contextmenu'
}],
If I uncomment it I will get an error.
Is it intended in the future to support plugins, or this is already obsolete?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.