I have a wicket Form and a AjaxButton on it, my requirement is to create a cookie/local storage on form submit. For this i tried to add following js:addEvent(form[0], "submit", save); function addEvent(elem, evt, fn) { if (elem.addEventListener) elem.addEventListener(evt, fn, false); else if (elem.attachEvent) elem.attachEvent("on" + evt, fn); } function save() { ........ createStorage(....); } but this js is not executed at all, submit event is not fired.(I dont want to use setPersistent() also as I want to use localstorage as well) Can you please tell me how to add javascript to form submit for the above scenario. TIA Krishna Mohan -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Adding-javascript-to-form-submit-tp4658586.html Sent from the Forum for Wicket Core developers mailing list archive at Nabble.com.
Please, send this kind of mail to the user mailing list
([email protected]).
- Adding javascript to form submit krishnamohank
- Re: Adding javascript to form submit Andrea Del Bene
