Show cool things you have done with our products


Post by mats »

Here's an example implementation using VB.NET and Ext Gantt. :)

[EDIT] Updated example to Gantt 1.2
Attachments
Ext Gantt CRUD demo (VB).zip
(408.83 KiB) Downloaded 598 times

Post by Dacy »

I tested the example, but the column ManuallyScheduled is a booleancolumn with combobox field, when i updated a task and saved in database and reloaded the Ext Gantt (refresh page) this column "ManuallyScheduled" didn't bind correctly with the value in database. Why?
            {
                    xtype       : 'booleancolumn',
                    width       : 50,
                    
                    header      : 'Manual',
                    
                    dataIndex   : 'ManuallyScheduled',
                    
                    field       : { 
                        xtype   : 'combo',
                        store   : [ 'true', 'false' ]
                    }
               }

Post by mats »

hmm, what data do you load into the taskstore? What is shown? Screenshot?

Post by Dacy »

excuse me my function returns a list of NestedTaskModel objects, my personal object "task" in ManuallyScheduled property is true value, but NestedTaskModel object in property ManuallyScheduled was not set for true. I corrected the problem and done.

Post Reply