I have a datepicker control setup using the JQuery UI, I am also using the JQuery UI themes which provide a bunch of default icons that I want to use.

The DatePicker allows for specifying a specific image, i.e.:

<script type="text/javascript">
  $(document).ready(function() {
    $("#DateFrom").datepicker({ showOn: 'button', buttonImageOnly: true, buttonImage: 'images/ui-icon-calendar.png' });
  });
</script>

To display an icon from the icon set you use something like:

<span class="ui-icon ui-icon-calendar"></span>

Is there an easy to integrate the two or do I just need to hack out the styles/images manually?

link|improve this question

2  
I'd like this, too; I submitted a ticket dev.jqueryui.com/ticket/5081 – Michael Haren Jan 20 '10 at 17:45
My ticket was marked Wont-Fix with a comment indicating the the buttn support may be dropped entirely in the future... I guess you're on your own :/ – Michael Haren Jan 23 '10 at 3:11
feedback

5 Answers

up vote 9 down vote accepted

I'm afraid you'll have to do that manually. By default, the Datepicker plugin uses the following HTML to insert the specified buttonImage:

<img title="..." alt="..." src="images/ui-icon-calendar.png" class="ui-datepicker-trigger">

By the way, you might want to use...

$(function() {
 // your code here
});

...instead of...

$(document).ready(function() {
 // your code here
});
link|improve this answer
Why would use use "$(function() {" instead of "$(document).ready(function() { "? – Thierry-Dimitri Roy May 1 '09 at 15:06
17  
1) Because it's shorter. 2) Because it's easier to remember. 3) Because it does exactly the same thing, since it's an alias for $(document).ready(function() { ... }. – Mathias Bynens May 1 '09 at 19:27
+1 on your comment for explaining it........ – Sayem Ahmed Feb 11 '10 at 20:26
3  
Assuming you're not working in an old version, "$(function(){})" isn't available in all versions ;) – jamiebarrow Aug 17 '10 at 14:00
feedback

I suggest putting the image into the input

input.date_picker {
  text-align: center;
  background-image: url("images/ui-icon-calendar.png");
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 18px;
  width: 78px;
}

Like

date_picker_example

This removes the need of doing a trigger manually

link|improve this answer
feedback

I got it working by doing this

 $("#DateFrom").datepicker({ showOn: 'button'}).next('button').text('').button({icons:{primary : 'ui-icon-calendar'}});

Just modifies the button that it inserts next to your input for the calendar. By default they throw three ellipses in the text, so I remove that as well.

link|improve this answer
feedback

http://jqueryui.com/demos/datepicker/#icon-trigger

A very good example with the sample code is provided.

link|improve this answer
feedback

Borrowing from and extending Loktar's answer, you could try something like this, note I have only tested this in FF10, but I can't see why it wouldn't work in other browsers.

$('.date-picker').datepicker({showOn: 'button'})
    .next('button').addClass('date-picker-button-hidden')
    .after($('<span/>')
        .addClass('ui-icon').addClass('ui-icon-calendar').addClass('date-picker-icon'));

Note that in this example, date-picker-button-hidden and date-picker-icon are my own classes, since I don't like styling the jQuery CSS classes directly. Apply the following CSS:

span.date-picker-icon
{
    display: inline-block;
    z-index: -1;
    position: relative;
    left: -16px;
}

button.date-picker-button-hidden
{
    opacity: 0.0;
    filter: alpha(opacity=0);
    height: 16px;
    width: 16px;
    margin: 0;
    padding: 0;
}

This is effectively placing a regular jQuery span icon behind the button. The button is completely see-through / opaque (via the CSS), however because it is still on top of the icon, clicking the icon triggers the button click event.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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