In my application, I am setting destination of input fields to a screen action as I need to update some components on the page as information changes but the issue that I am facing is that it calls destination as soon as user starts type in, which in some cases make typing into the input field very annoying(especially date fields). I want the destination to be called on onblur event of text field so that the update doesn't happen until the user completes typing and leave the text box. How can I do that?
You can use text box extended property and write JavaScript code to perform any validation in On Blur.
Regards
-PJ-
Pramod Jain wrote:
Hi Pramod,
I am not doing any validations. I am running screen action to do some calculations and update the values of fields.