I have the scenario like this:
On a page there are two text boxes (FromDate and ToDate) which shows JQuery DatePicker onkeydown, and below these text boxes I have a submit button.
Once the page is loaded, I dont want these date text boxes to be validated against rules, but I want to ensure that JQuery Validator works for me on button click.
I have to fire validation at page load to ensure other rules are fired, like many other controls existing on page are validated once page is loaded.
One way I thought to add Rules on click of button, but seems Validator load them and hook them much earlier, so even if the same object is updated (with additional rules), it doesnt work.
Please help how it can be done? Thanks in advance.