Hi! Is it possible to refresh a listView during a form onSubmit event, without using ajax? Is there any way (apart from ajax) to do it than by explicitly reloading the page?
If I reload the page I must store the feedback messages elsewhere (session-scope feedback messages) and re-initialize all the components "manually". Or is there maybe something like listView.repaint() or page.refresh() which can be called from Form.onSubmit()? This is what I have: <feedback messages here/> Item: [ ] (textfield) ["Add" Submit-button] <table> <tr>previously added item</tr> <tr>previously added item</tr> <tr>previously added item</tr> </table> This is what I want: When the "Add" -button is pressed, the form.onSubmit() is called and a new element is added into the list of elements (used as the source for the listView pupulating the table). I would then like to "reload" the page and show a success message in the feedback panel. I know this can be maneuvered by actually reloading the page and using session-scope feedback messages, but is there some "soft reload", which sort-of shortcuts using session-scope feedback messages? Technically the difference is small, but conceptually I find "soft refresh" more intuitive. ** Martin --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]