------ Ajax/DHTML Guide - EventListener ------ Jesse Kuhnert ------ 26 July 2006 ------ EventListener, the swiss army knife of ajax functionality The {{{../tapestry-annotations/index.html#EventListener}EventListener}} annotation is probably going to be the most frequently used new feature <(if history from tacos users is any indicator)> in Tapestry 4.1. It offers an awful lot, and is based around the functionality now familiar to many in {{{http://dojotoolkit.org}dojo}}'s {{{http://dojotoolkit.org/book/dojo-book-0-4/part-5-connecting-pieces/event-system-0}event API}}. <> {{{../tapestry-annotations/index.html#EventListener}EventListener}} core annotation documentation., {{{http://www.quirksmode.org/js/introevents.html}Quircksmode}} At its core this new annotation allows you to bind client side events to page/component {{{../usersguide/listenermethods.html}listener}} methods. "Client Side" events can have a lot of different meanings. It could mean listening to function calls on a Tapestry {{{../apidocs/org/apache/tapestry/dojo/IWidget.html}supported}} dojo widget, or it could mean listening to changing field values in a Tapestry {{{../components/form/form.html}Form}} component. * Basic example, listening to pure DOM events In this example we want to be notified whenever anyone moves their mouse over a particular html element on our page. : <> Not to be confused with listening to elements rendered by components, for that use the target attribute. +----------------------------------------------------------- ....
Big brother is watching you.
.... +----------------------------------------------------------- The java page class snippet required to bind to this event: +------------------------------------------------------------- .... @EventListener(elements = "myFavoriteDiv", events = "onmouseover") public void watchText() { // do something } .... +------------------------------------------------------------- That's it! If you'd like more contextual information, like what was happening with the event that initiated the original client-side event just add a {{{../apidocs/org/apache/tapestry/event/BrowserEvent.html}BrowserEvent}} parameter to your listener and it will be automatically populated. +------------------------------------------------------------- .... @EventListener(elements = "myFavoriteDiv", events = "onmouseover") public void watchText(BrowserEvent event) { // do something System.out.println("User clicked on x/y coordinates " + event.getPageX() + "/" + event.getPageY()); } .... +------------------------------------------------------------- * Complex possibilities, binding widget functions to form submissions Depending on the number of parameters you specify you can achieve some fairly complicated <(under the covers at least)> logic with very little work. ** Listening to widget functions In this example we want our {{{../usersguide/listenermethods.html}listener}} method to be called when the {{{../apidocs/org/apache/tapestry/dojo/form/Autocompleter.html}Autocomplete}} component on our page has selected an entry. The relevant html: +----------------------------------------------------------------------- ....
Select a project:
.... +----------------------------------------------------------------------- The java page class snippet: +----------------------------------------------------------------------- .... @Component(bindings = { "model=projectModel", "value=selectedProject", "displayName=message:choose.project", "filterOnChange=true", "validators=validators:required"}) public abstract Autocompleter getProjectSelection(); @EventListener(targets = "projectChoose", events = "onValueChanged") public void projectSelected() { // do something } .... +----------------------------------------------------------------------- ** Accessing intercepted functions' parameters on the server-side <> This feature requires version 4.1.3. When listening to a client-side javascript function that does not represent a native browser-event, you can access the parameters passed to the function on the server-side. The Parameters are made available as a JSON-Array within the class {{{../apidocs/org/apache/tapestry/event/BrowserEvent.html}BrowserEvent}}. So, given a javascript function "trigger" defined on component "triggerable" which was called like <<>>, you may get hold of the answer like that: +----------------------------------------------------------------------- @EventListener(events="trigger", targets="triggerable", elements="element") public void onTriggered( BrowserEvent event ) { doSomething( event.getMethodArguments().getJSONObject(0).getInt("theAnswer") ); } +----------------------------------------------------------------------- ** Submitting forms when an event happens, and bypass client validation while you're at it The last example was good for showing how to listen to widget function events, but what are you supposed to do with an event that comes from a {{{../apidocs/org/apache/tapestry/form/IFormComponent.html}IFormComponent}} that doesn't also submit and update the form value that was changed? Nothing! If you specify a component target that already implements {{{../apidocs/org/apache/tapestry/form/IFormComponent.html}IFormComponent}} the event system will automatically wire up the form submission for you. In the rare instance where you would want to submit some <> form instead of the default you can do so by using the <<>> parameter. +----------------------------------------------------------------------- .... @EventListener(targets = "projectChoose", events = "onValueChanged", submitForm = "myForm") public void projectSelected() { // do something } .... +----------------------------------------------------------------------- That's it! When your {{{../usersguide/listenermethods.html}listener}} is invoked you can be confident that your <<>> {{{../components/dojo/autocompleter.html}Autocompleter}} component has also been updated to reflect the currently selected value. As an added bonus, form validation is turned off by default with the {{{../tapestry-annotations/index.html#EventListener}EventListener}} annotation as the majority use case is likely to be one off individual events where invoking client side validation would be a cumbersome experience for users. ** Turning off asynchronous submissions There are some rare instances where you want to wire up an event to a {{{../apidocs/org/apache/tapestry/form/IFormComponent.html}IFormComponent}} that you would like to cause a submission but not have it happen asynchronously. For that you can use the <<>> attribute. +----------------------------------------------------------------------- .... @EventListener(targets = "projectChoose", events = "onValueChanged", async = false) public void projectSelected() { // do something } .... +----------------------------------------------------------------------- * A note about event names One common misunderstanding with EventListener is the exact syntax to use when listening to events. The rules aren't very complicated, but there are two important differences: * <> : These are events generated by actions people take in the web browser. Such events might be Mouse,Keyboard,Focus,or any combination within. All are covered in the handy reference at {{{http://www.quirksmode.org/js/introevents.html}Quircksmode.org}}. These events should almost always be specified in all lowercase. Event though it is perfectly legal to do something like <<>>, this is not the same thing that happens when you call <<>> - which is more or less what Dojo is doing. Just keep all of your event names in lowercase and you'll be ok. * <> : Because the Dojo event connection system is so powerful it allows you to bind to more than just native javascript events, like function calls on javascript functions. The example above referenced the <<>> function for the Autocompleter widget. It valid/correct to use proper capital case when referencing actual javascript functions on the client side.