Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software.
Try it for free.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