Heena Dave
Heena Dave

Reputation: 321

problem implementing jquery datepicker

can i get what are the total plugin require to implemet jquery date picker and from where can i get them all? right now i m using,

datePicker.css

jquery.datePicker.js

jquery-ui-1.8.13.custom.min.js

jquery-ui-1.8.13.custom.css

can any one suggest me?

Upvotes: 2

Views: 689

Answers (4)

Timothy Jones
Timothy Jones

Reputation: 22135

Do you mean this datepicker?. If so, it is part of the jQuery UI, so it will be provided in the jquery-ui file. However, each jquery-ui file can be customised to include (or not) various parts of the UI. You'll need to make sure that you've included it when you selected the components of your custom jquery-ui bundle on their download page. You can always download it again to make sure. Inside the downloaded zip file will be an example html document that contains the includes you'll need:

css/ui-lightness/jquery-ui-1.8.13.custom.css

js/jquery-1.5.1.min.js

js/jquery-ui-1.8.13.custom.min.js

Upvotes: 1

Useless Code
Useless Code

Reputation: 12412

The jQuery UI date picker documentation is here.

Upvotes: 1

Lucas
Lucas

Reputation: 614

It looks like your missing jQuery itself, which everything else depends on. Make sure you include it before the plugin. For a more helpful answer, include your actual code.

Upvotes: 2

Xhalent
Xhalent

Reputation: 3944

Normally I get by with just the jquery-ui .js and .css, but you need make sure that you have included the datepicker when you customised the jquery, else simply use the full jquery-ui library.

Upvotes: 0

Related Questions