JavaScript/jQuery Gantt - resources
You can add resources to a project and assign them to tasks. Resources can be people responsible for tasks, equipment, materials, etc. The Gantt displays resources as labels on the right of the tasks.
Use the dataSource option to bind the widget to a data source, which contains resources. If the field names in your data source differ from the 'id' and 'text' default names, use the keyExpr and/or textExpr options to map data fields.
See Also
- $(function() {
- $("#gantt").dxGantt({
- resources: {
- dataSource: resources,
- keyExpr: "resourceId",
- textExpr: "title"
- },
- //...
- });
- });
- var resources = [{
- 'resourceId': 1,
- 'title': 'Management'
- },
- // ...
- ];
dataSource
Refer to the resources option to see how to specify the dataSource option.
If you have technical questions, please create a support ticket in the DevExpress Support Center.