|
Hi,
I use datepicker like this:
html textInput
value: Date today;
callback: [ :value |
self date: value ] ;
script: (( html jQuery new datepicker) onSelect: html jQuery ajax serializeThis).
In case of selecting the date within the datepicker popup (click at a date), it works fine ("self date:" is sent).
But if I change the date within the textInput field, without using the datepicker popup, the callback is not fired.
How can I set the date: also in case that the user types in the date in the text field?
Sabine
|