Date field modify data
Date field modify data
I have a date field that I want to accept different input styles for. Where would I intercept the value before it gets sent to the server for inserting into the database? I am looking at the Editor event "preSubmit", but I was hoping for something when the date field loses focus, is that possible?
This discussion has been closed.
Replies
You can assign a handler to the
blur
event using:field().input()
gives theinput
element for the field (wrapped in a jQuery instance).Allan
Thank you.