There is a calendar image near to the text box for dropdown calendar. When I change the date value in text box by
$("#calendarTextBox").val("11/22/2004");
and then if user clicks on the image, the drop down calendar contains the old date value instead of the one set by the javascript.
Any clues will be helpful.
Calendar Demonstrati开发者_JS百科on for trying out.
Got the solution.
$find('<%CalenderExtenderContol.ClientID%>').set_selectedDate(new Date('11/22/2004'));
精彩评论