Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
250
Today button at bottom of calendar dropdown.
posted

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?

 

 

 

Parents
  • 20872
    Verified Answer
    Offline posted

    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.

     

Reply Children
No Data