Id like to be able attach my own client-side javascript handling on the form submit. Whats the best way to do this?
You can add event handler during component rendering: protected void renderComponent(IMarkupWriter writer, IRequestCycle cycle){ … yourFormComponent.addEventHandler(FormEventType.SUBMIT, “javaScriptValidatingFunctionName”); … } org.apache.tapestry.contrib.palette.Palette can be used for detailed example.