Show cool things you have done with our products


Post by arcady »

Task model identifier field name is "Id" (first letter is capital): https://www.bryntum.com/products/gantt-for-extjs/docs/ ... idProperty
If you use "id" instead you should let the model know of it:
Ext.define('MyApp.model.Task', {
    extend  : 'Gnt.model.Task',

    idProperty : 'id',
....

Post by Roman »

I found the error I displayed
"id" and "Id"

Post Reply