Linked Questions
11 questions linked to/from knockoutjs databind with jquery-ui datepicker
135 votes
13 answers
72k views
jQuery UI datepicker change event not caught by KnockoutJS
I'm trying to use KnockoutJS with jQuery UI. I have an input element with a datepicker attached. I'm currently running knockout.debug.1.2.1.js and it seems that the change event is never being caught ...
23 votes
5 answers
31k views
Bootstrap datepicker with knockout.js databind
This question is similar to knockoutjs databind with jquery-ui datepicker, but instead of the jQueryUI datepicker, I would like to use one of the Bootstrap datepickers. The API for the Bootstrap ...
8 votes
2 answers
3k views
Knockout JS event for any viewmodel dom update
I need to run a jquery ui bit of code whenever the DOM is updated via Knockout.JS. I realize this can be done using custom bindings, but that appears to be related to a specific viewmodel, I want to ...
4 votes
3 answers
4k views
knockout js bind with datetimepicker gives an exception
I think I can easily bind a date data with jquery ui calendar and knockout.js thanks to this answer. Now I need to bind a date data as well as its time. Of course, I can use timepicker. But I am not ...
1 vote
1 answer
1k views
Bind datepicker on dynamic textbox with knockout js binding
Hello I am using knockout with ASP.NET MVC in my in house project. I have one form page (Transaction page) that consist no. of clients in grid and based on click I am creating arrayobject in knockout ...
0 votes
1 answer
1k views
ko databind with datepicker
I am using ko binding for my date time picker. I got a sample from here But when user enters invalid data the value is resetting to today's date. How to avoid this? (I need to show the field as ...
0 votes
1 answer
399 views
Knockoutjs and JQuery datepicker. Element looses datepicker after re-render
When i'm trying to use input with id "eventStartDate", after it was hidden, and made visible again - it looses datepicker: <!-- ko 'if': isEvent.forEditing --> <div class="editor-field"&...
1 vote
1 answer
770 views
jQuery UI datepicker's minDate option resets current value
I have jQuery UI datepicker integrated with KnockoutJS. <input class="input-small hasDatepicker" data-bind="datepicker: ItemCurrentDate, datepickerOptions: { dateFormat: 'dd/mm/yy', changeMonth: ...
1 vote
0 answers
674 views
Knockout.js, Timeline.js, and Datepicker failure
I have a question regarding Timeline.js and Knockout.js with ASP.NET MVC 4. I'm hoping that my problem is actually related to improper use of Javascript that someone can spot, as I'm not too sure how ...
0 votes
1 answer
511 views
Maximum value on Knockout Datepicker
<td> <input id="dt_dec_date" data-bind="datepicker: vm.afi.Details.DecisionDate" /> </td> DecisionDate: ko.observable(), I need to ensure that the date is not more than today,...
2 votes
1 answer
240 views
how to handle date for posting purposes in the server
I have this value from ASP.NET MVC /Date(1446393600000)/ which its value in SQL Database is '2015-11-02' which is a date (date only) and to manipulate it as javascript object, I used moment.js, so ...