jQuery-Timepicker-Addon
jQuery-Timepicker-Addon copied to clipboard
Can we have Icon triggering as it is in jquery.datepicker?
trafficstars
$( "#datepicker" ).datepicker({ showOn: "button", buttonImage: "images/calendar.gif", buttonImageOnly: true });
+1
As of today, this works for me:
$( ".timepicker" ).timepicker({ buttonImage: 'my_icon.jpg', buttonImageOnly: true, showOn:'button' });
Note that I assign all my objects a class of timepicker then run the above to wire them up and I get icon triggering behavior just like the datepicker.