does anybody have experience of incorporating and configuring the jquery datepicker ?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
10 years ago
I've tried to do this but not having success - any leads would be much appreciated
10 years ago
It's pretty straightforward assuming you've properly included jquery and jquery-ui, you simply need a target textbox and an initiation script.


http://jqueryui.com/datepicker/

Has the code all spelled out if you click View Source at the bottom. The only mod you typically have to do to get this to work with MVC helpers is to include an html attribute, such as

@Html.EditorFor(model => model.YourProperty, new {id='datepicker'})
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.