We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Essential JS2

Syncfusion jQuery based widgets are no longer in active development. Switch to our pure JavaScript based next generation Essential JS 2 library.

Syncfusion Feedback

How to allow the editing based upon the roles in Gantt control

Platform: jQuery |
Control: ejGantt

In Gantt, it is possible to restrict the editing based on the roles. This can be done by using the beginEdit and taskbarEditing events. The beginEdit event will be triggered while enter the edit mode in the TreeGrid cell and the taskbarEditing event will be triggered while dragging and resizing  the taskbar in Gantt chart. please refer the following code example for this.

//app.component.html
 
<ej-gantt id="GanttControl" [dataSource]="ganttData" taskIdMapping="taskID"
    taskNameMapping="taskName" startDateMapping="startDate"        
    (taskbarEditing)="taskbarEditing($event)" (beginEdit)="beginEdit($event)"
    //..
</ej-gantt>        

 

//app.component.ts
 
taskbarEditing(args) {
        var Resources = args.rowData.resourceInfo;
        for (var i = 0; i < Resources.length; i++) {
            if (Resources[i].resourceName != "Project Manager") {
                args.cancel = true;
                break;
            }
        }
    }
 beginEdit(args) {
        var Resources = args.data.resourceInfo;
        if (!ej.isNullOrUndefined(Resources))
        for (var i = 0; i < Resources.length; i++) {
            if (Resources[i].resourceName != "Project Manager") {
                args.cancel = true;
                break;
            }
        }
    }

A simple sample to restrict the editing based upon the roles in Gantt is available here.

Note:

In the above sample we have restricted both taskbar editing and cell editing when the role is not ‘Project Manager’.

 

ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile