Hi, Speed Stars
I was wondering how can I make a Gantt chart with dynamic columns, in all examples on your website there is a static loading of columns. In our case we need a XML with all columns to be shown and another XML will be sending back data with all the necessary data to be shown.
For example we can have 4 or N columns like this:
header: 'Tasks',
sortable: true,
dataIndex: 'Name',
locked: true,
width: 200
header: 'Start',
sortable: true,
dataIndex: 'StartDate',
locked: true,
width: 80
header: 'End',
sortable: true,
dataIndex: 'EndDate',
locked: true,
width: 80
header: 'Some info',
sortable: true,
dataIndex: 'EndDate',
locked: true,
width: 80
and we will load all the necessary data in a store.
The issue I'm having here is how can I have dynamic fields in a store and dynamic columns generated based on XML file and is that possible at all?