Page 1 of 1

Change value does not fire value change event

Posted: Wed Sep 25, 2013 6:18 pm
by Pasteur Miranda

Hi,

I have a toggle in my UI. I change its value using this command: Appery("togmon").val("on"). I expected the toggle "togmon" valuechange event to be invoked after this command, but it doesn't happen. What is the problem? Is there any other way of explicitly fire the valuechange event?

Thanks, Pasteur Jr.


Change value does not fire value change event

Posted: Wed Sep 25, 2013 7:23 pm
by Kateryna Grynko

Hi,

This should help you:
codeAppery("togmon").val("on").change();/code


Change value does not fire value change event

Posted: Wed Sep 25, 2013 9:20 pm
by Pasteur Miranda

Thanks katya, it worked! Pasteur Jr.