Hello, I am using an editor written in javascript. When someone clicks on "save" data should be sent to Tapestry and a zone should be updated.
Currently in javascript I call: zoneManager.deferredZoneUpdate(zoneId, zoneUrlWithContent). zoneUrlWithContent contains the content of the editor as parameter and I retrieve the content in Tapestry with: Object onSave(@RequestParameter(allowBlank=true, value="content") final String content) { .. } Now I want to send the content by POST because the size of URLs is limited to 8192 characters. Can you give me an example (JS and Tapestry event handler in Tapestry 5.4)? Thanks in advance. T.W.