1

I'm using Knockout in UI for my website, i have a problem with input type="date" in Chrome display a Calender but in IE9 just an input type text (empty) have some one an idea how to display calender in all browser?

 Start: <input type="date" class="required" data-bind="value: StartDate">

Thanks,

Chris
  • 6,272
  • 9
  • 35
  • 57
ramo
  • 35
  • 4
  • 2
    With JQuery UI Datepicker... see [Knockout with Jquery UI datepicker][1] [1]: http://stackoverflow.com/questions/6612705/knockout-with-jquery-ui-datepicker – moi_meme Jul 31 '12 at 12:25
  • @moi_meme Great it's a good example thanks, – ramo Jul 31 '12 at 12:43

1 Answers1

1

The input type of "date" is new with HTML5. That's why you're only seeing the calendar with Chrome, you likely have a version of it with HTML5 support included in it. This has nothing to do with knockout.

Rich
  • 2,076
  • 1
  • 15
  • 16