yes I have tried that one. But with no luck. Some of their example don't even work.. There seem to be some issues with their plugin. For example with events that do not span the whole day..
Hy,I made some changes in Ext.ux.FullCalendar.js ,I want to load events from store.
renderFullCalendar : function(){
var stor=Ext.getStore('Matieres'); //My store
stor.load();
console.log(stor.getAt(0).data.start); //it works render : 2013-02-15 09:30:00
var me = this;
var date = new Date(),d = date.getDate(),m = date.getMonth(),y = date.getFullYear();
$('#'+me.getPlaceholderid()).fullCalendar({
hideHeaders : true, //new property to hide full calendar header
editable: false,
eventstor, //It doesn't work ,there is no events shown on calendar
Please how can I solve this problem