Our state of the art Gantt chart


Post by caiyuan »

Image

Image

I need to disable these two places


Post by tasnim »

Hi,

Please check the docs :
https://bryntum.com/docs/gantt/api/Gantt/feature/TaskEdit#removing-a-built-in-item
https://bryntum.com/docs/gantt/api/SchedulerPro/feature/PercentBar

To remove the percentBar

new Gantt({
	features : {
		percentBar : false
	}
});

To remove the complete field from the task editor:

new Gantt({
	features : {
		taskEdit : {
			items : {
				generalTab : {
					items : {
						percentDone : false
					}
				}
			}
		}
	}
});

Good Luck :),
Tasnim


Post Reply