Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
104
rated 0 times [  105] [ 1]  / answers: 1 / hits: 98272  / 15 Years ago, wed, april 29, 2009, 12:00:00

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?


More From » css

 Answers
7

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
});

[#99633] Thursday, April 23, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
jimmieo

Total Points: 515
Total Questions: 102
Total Answers: 110

Location: Kazakhstan
Member since Mon, Sep 26, 2022
2 Years ago
;