I have a form with a select control. There is an onchange function on the select that sets several variables and does a form.submit at the end. I noticed that WebForm$Scriptable.submit() gets called which in turn calls WebRequestSource.submitRequest(). This is as it should be, but the return WebResponse is ignored by WebForm$Scriptable.submit(). Is there a way to access this WebResponse? If I am missing something more basic please let me know.
BTW. keep up the good work!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a form with a select control. There is an onchange function on the select that sets several variables and does a form.submit at the end. I noticed that WebForm$Scriptable.submit() gets called which in turn calls WebRequestSource.submitRequest(). This is as it should be, but the return WebResponse is ignored by WebForm$Scriptable.submit(). Is there a way to access this WebResponse? If I am missing something more basic please let me know.
BTW. keep up the good work!
The response is returned by the WebForm.submit method, at least in 1.5.1. The other methods are used internally and should not affect your code.