BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
function Load(args) { var columns = this.getColumns(); columns[0].width = "0px"; columns[2].headerText = "Planned start date"; columns[3].headerText = "Planned end date"; columns.push( { field: "ActualStartDate", headerText: "Actual start date", editType: "datepicker", mappingName: "ActualStartDate", //Provide this mapping name format: "{0:dd/MM/yyyy}", width: "120px" }); columns.push({ field: "ActualEndDate", headerText: "Actual end date", editType: "datepicker", mappingName: "ActualEndDate", //Provide this mapping name, format: "{0:dd/MM/yyyy}", width: "120px" }); columns.push({ field: "Order", headerText: "Order", editType: "numericedit", mappingName: "Order", //Provide this mapping name, width: "60px" }); columns.push({ field: "IsFixedTask", headerText: "", editType: "booleanedit", mappingName: "IsFixedTask", width: "0px" }); }
<script type="text/javascript"> ej.Gantt.localization['en-US'].columnHeaderTexts.startDate = "New Start Date"; ej.Gantt.localization['en-US'].columnHeaderTexts.duration = "Time Delay";
|