function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Chirag MehtaChirag Mehta 

ActionSupport event"On Change" doesnt really work on a Text Field?

I am using ActionSupport event On Change for a TEXTBOX (Textbox value is read by Barcode Reader). The onchange event fires and redirects to another page. This is working perfectly in Chrome but it is not working in IE and FF. 

 

Any reasons for the onchange event not working in IE and FF for a text box. 

Rajesh ShahRajesh Shah
We have used onchange on inputField with the field type of Text and it works fine in IE and firefox.
Chirag MehtaChirag Mehta
@Rajesh - Can you please share snippet of your code
Cool_DevloperCool_Devloper

Are you using an InputText field for the textbox?

 

If yes, then why do you need to use ActionSupport? You can redirect the user using JS itself!

 

Cool_D