public interface HasRecordClickHandlers extends HasHandlers
Modifier and Type | Method and Description |
---|---|
HandlerRegistration |
addRecordClickHandler(RecordClickHandler handler)
Executed when this field is clicked on.
|
fireEvent
HandlerRegistration addRecordClickHandler(RecordClickHandler handler)
ListGrid.recordClick()
is also defined, it will be fired for fields that define a recordClick handler if the
field-level handler returns true. Call RecordClickEvent.cancel()
from within RecordClickHandler.onRecordClick(com.smartgwt.client.widgets.grid.events.RecordClickEvent)
to prevent the grid-level handler from firing.handler
- the recordClick handlerHandlerRegistration
used to remove this handler