Modify ↓
Ticket #876 (closed bug: fixed)
datePicker replaces class on input when inputClick:true is supplied
| Reported by: | sam | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | plugin | Version: | |
| Keywords: | datePicker | Cc: | |
| Blocking: | Blocked by: |
Description
The datePicker plugin replaces any class on the input if "inputClick: true" is supplied, which may change the display of the box.
Easy fix though.
Go to line 392 and replace
calBut = jQuery(this).attr({'class':'date-picker', 'title':chooseDate});
with
calBut = jQuery(this).attr({'title':chooseDate}).addClass('date-picker');
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Fixed in revision 1255