0

Well i been facing issue to conStruct a fiddle where i can explain my problem to everyone clearly . Well i done most part and i needed small assistance on helping me setting up fiddle with datepicker binded to textbox in my fiddle

My fiddle : http://jsfiddle.net/JL26Z/2/

<script id="PhoneTemplate" type="text/html">
        <div> // designing template for further use

Well depends on my this resolution i can post my real issue .

Regards

Shaunak D
  • 20,588
  • 10
  • 46
  • 79
super cool
  • 6,003
  • 2
  • 30
  • 63

1 Answers1

2

Updated your Fiddle:

In your fiddle, if you are using Knockout.js , other files can be added in the External Resources Tab. You need to add jQuery UI reference to it.

Add these lines to your code.

Html :

<input type="text" id="date"  />

Js :

$(document).ready(function(){
    $('#date').datepicker();

});

Note : This is just an answer to include datepicker in the fiddle.

For the whole functionality you should refer this answer - Link.

Community
  • 1
  • 1
Shaunak D
  • 20,588
  • 10
  • 46
  • 79
  • super mate just what i need :) cheers . The link you given at the end is what i need actually :) cheers god bless – super cool Jun 06 '14 at 06:53