BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi syncfusion supporterIs there any way to hide the resourceGroup row progressbar in ej1 gantt control?
[gantt.html]
$("#resourceGantt").ejGantt({
//…
queryTaskbarInfo:function(args){
if(args.data.hasChildRecords)
$(args.taskbar).find(".e-parentContainer").css('display', 'none');
}
}); |
Hi Xia Guangwei,Thanks for contacting syncfusion support.We can hide the group row task bar by using queryTaskbarInfo event, please check the below code snippet for details.
[gantt.html]
$("#resourceGantt").ejGantt({//…queryTaskbarInfo:function(args){if(args.data.hasChildRecords)$(args.taskbar).find(".e-parentContainer").css('display', 'none');}});We have also prepared a sample for this and please find the same below.
Regards,Gurunathan