I'm having trouble finding information for adding custom dialog fields using
GanttEditDialogField and
GanttAddDialogField. I want to know how to add fields for custom columns and set their input control type.
<Syncfusion.Blazor.Gantt.GanttAddDialogField Type="Syncfusion.Blazor.Gantt.DialogFieldType.Custom" HeaderText="General"
Fields="@(new string[]{ "jobname", "priority" })"></Syncfusion.Blazor.Gantt.GanttAddDialogField>
From the example above, "jobname" is a custom column that I want to add an input control for in the Custom tab of the add dialog. It is a string and would need a textbox, but "priority" is an int and would need a numericupdown or combobox with dropdown list of int's.