Interface HasRecordClickHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
CalendarView
,CubeGrid
,DateGrid
,EditTree
,ListGrid
,ListGridField
,ListGridRemoveField
,ListGridSummaryField
,ListPalette
,Menu
,MenuPalette
,PickListMenu
,RecordEditor
,SelectionTreeMenu
,TableView
,TreeGrid
,TreeGridField
,TreePalette
-
Method Summary
Modifier and TypeMethodDescriptionaddRecordClickHandler
(RecordClickHandler handler) Executed when this field is clicked on.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addRecordClickHandler
Executed when this field is clicked on. Note that ifListGrid.recordClick()
is also defined, it will be fired for fields that define a recordClick handler if the field-level handler returns true. CallRecordClickEvent.cancel()
from withinRecordClickHandler.onRecordClick(com.smartgwt.client.widgets.grid.events.RecordClickEvent)
to prevent the grid-level handler from firing.- Parameters:
handler
- the recordClick handler- Returns:
HandlerRegistration
used to remove this handler
-