Hello,
I already upgrade to the version 15.4.0.20.
This new pics file is the console args content, it's a few differences from the previous version
But the args content from TaskbarEditing event still not found the roundOffDuration attribute.
I create a new Syncfusion project with the version 15.4.0.20.
And there is mine test Gantt setting:
@(Html.EJ().Gantt("Proj_GanttEditor")
//...
.ScheduleStartDate("02/01/2014")
.ScheduleEndDate("03/14/2014")
.DateFormat("MM/dd/yyyy")
.AllowDragAndDrop(true)
.ShowColumnChooser(false)
.AllowSorting(false)
.EnableProgressBarResizing(false)
.EnableWBS(true)
.IncludeWeekend(true)
.ShowColumnOptions(true)
.HighlightWeekends(true)
.TreeColumnIndex(1)
.ShowGridCellTooltip(true)
.AllowGanttChartEditing(true)
.AllowColumnResize(true)
.EnableContextMenu(true)
.TaskSchedulingMode(GanttTaskSchedulingMode.Manual)
.IncludeWeekend(true)
.ClientSideEvents(eve =>
{
eve.TaskbarEditing("TaskbarEditing");
})
.EditSettings(edit =>
{
edit.AllowAdding(true);
edit.AllowDeleting(true);
edit.AllowEditing(true);
edit.AllowIndent(false);
edit.EditMode("normal");
})
.IsResponsive(true)
.EnableVirtualization(false)
.SizeSettings(ss => ss.Width("100%").Height("600"))
.DragTooltip(tooltip =>
{
tooltip.ShowTooltip(true);
})
//...
)
Maybe I have some settings are not set ?
Thanks,
Best Regards.
Attachment:
Gantt15_4_0_20_6f2be6b7.zip