com.smartgwt.client.widgets.grid.events
Interface HasRecordDoubleClickHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
CubeGrid, DateGrid, ListGrid, Menu, TableView, TreeGrid

public interface HasRecordDoubleClickHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addRecordDoubleClickHandler(RecordDoubleClickHandler handler)
          Executed when the listGrid receives a 'doubleClick' event on an enabled, non-separator record.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addRecordDoubleClickHandler

HandlerRegistration addRecordDoubleClickHandler(RecordDoubleClickHandler handler)
Executed when the listGrid receives a 'doubleClick' event on an enabled, non-separator record. The default implementation does nothing -- override to perform some action when any record or field is double 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.
To do something specific if a particular field is double clicked, add a recordDoubleClick method or string of script to that field (same parameters) when you're setting up the list.
Notes:

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