I'm trying to get some Ajax functionality working in tapestry 4.1.6. I can get the following working using okay with an action listener defined:
@EventListener( targets = "benefitSelect", events = "onchange", submitForm="frequencyForm") public void doStuff() While the above works, haveing everything in one form means of course that all values are submitted when a checkbox is toggled. For various reasons, I would like each each control to be in it's own form so that only that value is submitted i.e. something like. I have removed the event listener for now and am trying a synchronous form submit. All the checkboxes generate an event however the problem is however is that they are all fire an event for the first element in the list i.e. setSelected is always called for that element at benefits[0]. Can anyone offer any advice on this? Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-4-1-6-Dynamic-Form-tp4864970p4864970.html Sent from the Tapestry - User mailing list archive at Nabble.com.