How to get resource info when adding new record?
In JavaScript 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
Conclusion
I hope you enjoyed learning about how to get resource info when adding new record.
You can refer to our JavaScript Gantt’s feature tour page to know about its other groundbreaking feature representations. You can also explore our JavaScript Gantt example to understand how to present and manipulate data.
For current customers, you can check out our JavaScript from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our JavaScript Gantt and other JavaScript components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!