Refreshing with new data with same schema
To refresh gantt with same schema (same bound property names) you only have to set the DataSource of GanttControl to null first and then reset DataSource property again with the new data. The below code will explain how to do this.
|
// First set the source to null and then set the new source. $gantt_container.GanttControl("option", "DataSource", null); $gantt_container.GanttControl({ WorkTimeSchedule: schedule, DataSource: data }); |
� RadiantQ 2022. All Rights Reserved.