In Gantt Control, it is possible to get the resource details after adding a new record, using the actionComplete client Side event. The following code snippet explains how to map the resource details in a project and to trigger an action after adding a new record using actionComplete event. <script type="text/javascript"> //RESOURCE DECALARATION OF GANTT CONTROL var resources = [ { "Id": 1, "Name": "Resource 1" }, { "Id": 2, "Name": "Resource 2" }, //... ]; $("#GanttContainer").ejGantt({ //... resourceInfoMapping: "Resources", resourceNameMapping: "Name", resourceIdMapping: "Id", }); function actionComplete(args) { if (args.requestType === 'save' && args.addedRecord) { //Newly Added Record is obtained here , which can be updated to atabase var name=[]; var length = args.addedRecord.resourceInfo.length; for (i = 0; i < length; i++) { name[i] = args.addedRecord.resourceInfo[i].ResourceName; } return name; } } </script> Sample Link: A sample to get the resource details after added the new row Gantt control is available in the following link. Sample |
This page will automatically be redirected to the sign-in page in 10 seconds.