Our state of the art Gantt chart


Post by naveen12 »

In gantt feature taskEdit inside editorConfig that has title property. It shows 'Information' by default how to change that title when ever I open taskEditer in gantt. pls provide some example


Post by tasnim »

Hi,

You could listen to this https://bryntum.com/products/gantt/docs/api/Gantt/feature/TaskEdit#event-beforeTaskEditShow listener
And change the title of the editor

new Gantt({
	listeners : {
		beforeTaskEditShow({ editor }) {
			editor.title = "Task Editor"
		}
	}
});

Post by naveen12 »

thank you its working


Post Reply