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
40
Week Numbers in UltraDateTimeEditor?
posted

Is it possible to show the week numbers there in the UltraDateTimeEditor?

Parents
No Data
Reply
  • 69832
    Suggested Answer
    Offline posted

    Handle the AfterDropDown event like so:

    void ultraDateTimeEditor_AfterDropDown(object sender, EventArgs e)
    {
        UltraDateTimeEditor control = sender as UltraDateTimeEditor;
        MonthCalendar cal = DropDownManager.GetCurrentDropDownControl( control ) as MonthCalendar;
        cal.ShowWeekNumbers = true;
    }

Children