how to make the user to select only mondays in the ultrawebdatechooser?
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.
can we able to alert the user with "not-allowed" when the cursoris on other days when he tries to select?
My aspx page is completely in
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" Runat="Server">
</asp:Content>
Within that, I have all the things needed. So In the script tag within the content, when I introduced
the jquery as per you mentioned, even the selections of mondays has stopped working and user is able to select any day. so I didn't add the url of jquery. For now, it is only working for the selection of mondays, but still remained with the same problem of unable to grey out other days except monday.
I don't know how to attach my aspx file to this reply to give you more idea.
Hi,
To attach a file, go to the 'options' tab when writing a reply.
please find attached the complete aspx file
Hi aparnarege,
You have to add the jQuery reference in the head section of your master page. Also, note that the version 6.1 is outdated and is no longer supported. I would suggest you to upgrade your product.
Feel free to contact me if you have any further questions.
I'm just checking if you need any further assistance with the matter.