Search found 207 matches

Can you also paste some sample data for this example ? Hard to test anything with the default dataset.I've checked with this minimal dataset : [ { "BaselineEndDate" : "2011-06-01", "Id" : 1, "Name" : "Planning", "PercentDone" : 40, "Pr...
Some code is missing as I'm getting :
ReferenceError: startYearTask is not defined
Basically all you need to do is extend your resource model : Ext.define('CustomResource', { extend: 'Sch.model.Resource', fields : [ {name: 'Capacity', type: 'number'} ] }); var resourceStore = Ext.create("Sch.data.ResourceStore", { model : 'CustomResource',
Localization files for Gantt and Scheduler in Spanish :
What is the difference between 'Task' and 'Task QA' ? Anyway you can use the Task model methods : https://www.bryntum.com/products/gantt-for-extjs/docs/ ... dTaskAbove
Hard to say anything without any code or a runnable example.
Can you post some code to reproduce this ? When does this happen while using our components ?
Adding 'scope: this' to your button should fix this. Your panel should then be available under 'this' variable. tbar: [ { text : 'Foo', scope: this, handler: function(){ console.log('Foo: ', this); } } ]
Can you post your modified context menu code ?
But why do you want to reload everything instead of just syncing the changes ? If you want to get fresh data from the server you should just use `load` function on your stores. But I can't really find any justification for doing so. What is your usecase ?