com.smartgwt.client.widgets.tile.events
Interface HasRecordClickHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
TileGrid

public interface HasRecordClickHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addRecordClickHandler(RecordClickHandler handler)
          Executed when the tileGrid receives a 'click' event on a tile.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addRecordClickHandler

HandlerRegistration addRecordClickHandler(RecordClickHandler handler)
Executed when the tileGrid receives a 'click' event on a tile. The default implementation does nothing -- override to perform some action when any record is clicked.
A record event handler can be specified either as a function to execute, or as a string of script to evaluate. If the handler is defined as a string of script, all the parameters below will be available as variables for use in the script.
If you want to cancel the click based on the parameters, Call com.smartgwt.client.widgets.tile.events.RecordClickEvent#cancel() from within RecordClickHandler.onRecordClick(com.smartgwt.client.widgets.tile.events.RecordClickEvent). Otherwise, return true so that the click event be registered with the tile.

Parameters:
handler - the recordClick handler
Returns:
HandlerRegistration used to remove this handler