I'm using a jquery-ui datepicker. The HTML input field behind it is currently hooked up to knockoutjs as a dependentObservable, but when its value is set in the viewmodel, the datepicker loses its format. How should I do this and not lose the format? I would like the viewModel not to know that it is a jquery datepicker.
|
You could write a custom binding that sets the date in the field using the datepicker APIs and also sets the value of your observable by reading the date properly. The custom binding might look like:
You would use it like:
The Also, this assumes that you are using an observable for the date. The binding has to do a little more work if you want to do a one-way binding with a non-observable, but that is unlikely. Sample here: http://jsfiddle.net/rniemeyer/NAgNV/ |
|||||||||||||
|
|
I've been using RP Niemeyer's code marked as the answer above but since I've been using it I've made a few small changes to it. Thought I would post here maybe it will help others. Its pretty much the same, the only difference is that if the element has a value when the page loads then it will retain its value. Also, I made $elem a variable so that there will be less processing of $(element) that jquery will have to do.
|
|||
|
|
|
I had to make a slight edit to RP Niemeyer's code to work in my code using the dateFormat option, replacing
With
So the formatted version of the date was passed around correctly under the hood. |
|||
|
|
|
Here is what worked for my particular set of circumstances. I'm running a new enough version of MVC, that the default datetime serializer renders at ISO 8601 (see http://www.hanselman.com/blog/OnTheNightmareThatIsJSONDatesPlusJSONNETAndASPNETWebAPI.aspx). My bindings do not write directly to the date picker, but instead to an input tag's "value" attribute. Also, of note, I'm using date.js
Binding looks like this:
And the javascript to turn on the datepicker:
|
|||
|
|
|
One solution is to format the date yourself inside the dependentObservable function. So you must be returning something like If you include your code, i can explain more. |
|||
|
|
|
The datepicker samples above change the format of the date in the viewmodel from 'wcf' format to the javascript date format when the user selects a new date from the datepicker control. In my case I was passing the date back to a wcf service, and it would not accept a deserialized javascript date, it needed the date in the 'WCF' format. I modified the above script so that its stores the date in the viewmodel in WCF format so that it can be sent back to the server in that format.
|
|||
|
|