public interface HasRecordClickHandlers
extends com.google.gwt.event.shared.HasHandlers
Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addRecordClickHandler(RecordClickHandler handler)
Executed when this field is clicked on.
|
com.google.gwt.event.shared.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