I have a UI like this
which uses com.extjs.gxt.ui.client.widget.form.DateField On "change" event of Date i have a listener. The Issue here is
- The "Change Event" is fired only when user changes date and then click outside ( somewhere in blank area of form )
- If user just changes the date and doesn't click outside on form , the Change Event is not fired.
- I tried other events like Focus , Blur , Valid the issue with these is that date is coming as null ( and not new changed value ) i want to call my code only when the date value is changed ( without the user need to click outside )
My question is i want to call my code only when the date value is changed without the user need to click outside... is there a way ??