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

All Superinterfaces:
EventHandler

public interface RecordDoubleClickHandler
extends EventHandler


Method Summary
 void onRecordDoubleClick(RecordDoubleClickEvent event)
          Executed when the listGrid receives a 'doubleClick' event on an enabled, non-separator record.
 

Method Detail

onRecordDoubleClick

void onRecordDoubleClick(RecordDoubleClickEvent event)
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:
event - the event