#2098 closed enhancement (fixed)
Datepicker - onSelect should use apply() with input reference
Reported by: | Stormtrooper | Owned by: | kbwood |
---|---|---|---|
Priority: | minor | Milestone: | 1.5 |
Component: | ui.core | Version: | 1.2.1 |
Keywords: | datepicker onselect | Cc: | |
Blocked by: | Blocking: |
Description
The onSelect callback of the Datepicker UI control should be bound to the input that triggered it and also pass the date variable to it as it does already.
for example (pseudo code):
somewhere within the datepicker code ... if (options.onSelect) {
options.onSelect.apply(the_input, [ date_var ]);
}
This way, the callback can reference 'this' as the input and can do more things depending on the input that triggered the calendar popup (useful when several date inputs are on a page). Adding this feature would not break previous versions since the date variable is still passed as the first argument to the callback.
Thanks.
Change History (5)
comment:1 Changed 15 years ago by
Owner: | changed from paul to iMarc |
---|
comment:2 Changed 15 years ago by
Owner: | changed from iMarc to kbwood |
---|---|
Status: | new → assigned |
comment:3 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:5 Changed 14 years ago by
Milestone: | → 1.5 |
---|
Note: See
TracTickets for help on using
tickets.
Implemented for all callbacks.