Back to my pet project. I noticed that the web form doesn't refresh after saving. Why should it refresh if it submitted successfully? Simply because for some controls I have combos and textboxes overlapping, and I show the textbox in viewing, and the combo in editing. Once submitted, the combo is hidden and the textbox comes forth.
But the combo doesn't get the value from the combo - it has to get it from the server, it's a different field. So I found that my predecessor on this project has disabled ReloadOnSave. Ahmmm... why? Because it bugs out when the listener code (in jQuery.forms) tries to find the form. Because it can't. The object passed as form is not a form, it's a xhr... why?
But the combo doesn't get the value from the combo - it has to get it from the server, it's a different field. So I found that my predecessor on this project has disabled ReloadOnSave. Ahmmm... why? Because it bugs out when the listener code (in jQuery.forms) tries to find the form. Because it can't. The object passed as form is not a form, it's a xhr... why?
