Round-off start date, end date and duration value on taskbar editing

In Gantt start date, end date and duration values can be round-off as per current schedule-header-type value on taskbar resizing and dragging actions. This can be achieved by setting roundOffDuration argument value as true in taskbar-editing event.

The below code example explains how to achieve this requirement.

  • CSHTML
  • <ej-gantt id="ganttSample" datasource="ViewBag.datasource" 
            //...
            taskbar-editing="taskbarEditing">
    </ejGantt>
  • JAVASCRIPT
  • function taskbarEditing(args) {
    		args.roundOffDuration = true;
    	}

    Before resizing

    After resizing