Category / Section
How to update the schedule's start date and end date dynamically
In Gantt, It is possible to update the schedule start date and end date values dynamically by using the updateScheduleDates(startDate, endDate) method.
<script type="text/javascript">
function clickme() {
var ganttObj = $("#GanttContainer").ejGantt("instance");
ganttObj.updateScheduleDates("02/27/2017", "03/31/2017");
}
</script>
A simple sample to update the schedule date values dynamically is available here