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
150
ultrawebdatechooser
posted

how to make the user to select only mondays in the ultrawebdatechooser?

Parents
No Data
Reply
  • 37874
    posted

    Hi gagani,

    Thank you for posting in our forum.

    You can achieve this handling the CalendarValueChanging client-side event:

    function WebDateChooser1_CalendarValueChanging(oCalendar, oDate, oEvent){
        if (oDate.getDay() != 1) {
            oEvent.cancel = true;
        }
    }

    Please let me know if this helps.

Children