In my application I want to post the form when a textbox contained within the form is changed, rather than forcing the user to click the submit button. I tried setting an action listener on the TextBox, but that doesn't seem to fire unless the user hits enter. I've also tried setting an attribute as follows:
description.setAttribute("onChange","this.form.submit();");
but that doesn't work either. Is this something that I can make happen with
this framework?
Thanks.
Tim
