See this sample page.

The icon I want to be using is this:

alt text

The icon, as shown on the page, looks like this:

alt text

How can I make DatePicker use my original icon without modifications?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You need to set the buttonImageOnly property to true, like this:

$('#datepicker').datepicker({
   showOn: 'button', 
   buttonImageOnly: true,
   buttonImage: 'http://dl.dropbox.com/u/464119/kuzando/datepicker/calendar.png'
});

From the docs:

buttonImageOnly: Set to true to place an image after the field to use as the trigger without it appearing on a button.

link|improve this answer
In the age of Stack Overflow, I do less and less of RFTM-ing. Thanks :) – ripper234 May 29 '10 at 5:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.