Show cool things you have done with our products


Post by egor »

Could somebody provide me an example, how to store task order?

Post by mats »

Simply override the 'index' field.
Ext.define('MyTaskModel', {
    extend : 'Gnt.model.Task',
    fields : [
        { name : 'index', persist : true }
    ]
});

Post by egor »

It's working!! Great thanks!

Post Reply