If I bring up a project in the UltraGantt Control, it will list in the grid section each task with the start times. If I double click to bring up the task dialog and then open the calendar drop down, it has the Today button at the bottom.
Now if I open the caledar from the grid view without using the task dialog, the today button is not there.
The users like the Today button feature but I've not been able to find any settings that will put it on the calendar that is displayed when selecting the date from the grid view.
Is there a setting to turn this on?
I made these changes and the Today button does show up on the calendar drop down.
Thanks.
Hello,
I think that this is happening because the Grid section just uses the Editor which by default doesn't have the button.
If you would like to show the "Today" button you probably could try something like the following:
UltraCalendarCombo ucc = new UltraCalendarCombo(); this.Controls.Add(ucc);
ultraGanttView1.GridSettings.ColumnSettings[TaskField.StartDateTime].Editor = ((IProvidesEmbeddableEditor)ucc).Editor;
Please let me know if you have any other questions.