public class SelectionEvent extends BrowserEvent<SelectionChangedHandler>
jsObj| Constructor and Description |
|---|
SelectionEvent(com.google.gwt.core.client.JavaScriptObject jsObj) |
| Modifier and Type | Method and Description |
|---|---|
protected void | dispatch(SelectionChangedHandler handler) |
static <S extends HasSelectionChangedHandlers & com.google.gwt.event.shared.HasHandlers> | fire(S source, com.google.gwt.core.client.JavaScriptObject jsObj) Fires a open event on all registered handlers in the handler manager.If no such handlers exist, this method will do nothing. |
com.google.gwt.event.shared.GwtEvent.Type<SelectionChangedHandler> | getAssociatedType() |
Canvas | getFiringCanvas() Returns the Canvas firing the event. |
ListGridRecord | getRecord() record for which selection changed |
ListGridRecord | getSelectedRecord() Return the first selected record in this component. This method is appropriate if is "single", or if you only care about the first selected record in a multiple-record selection. |
ListGridRecord[] | getSelection() The selection associated with the listGrid. |
boolean | getState() New selection state (true for selected, false for unselected) |
static com.google.gwt.event.shared.GwtEvent.Type<SelectionChangedHandler> | getType() Gets the type associated with this event. |
getX, getY, isAltKeyDown, isCtrlKeyDown, isLeftButtonDown, isRightButtonDowngetFiringInstanceAsJavaScriptObjectassertLive, getSource, isLive, kill, revivepublic SelectionEvent(com.google.gwt.core.client.JavaScriptObject jsObj)
public Canvas getFiringCanvas()
Canvas firing the event.public static <S extends HasSelectionChangedHandlers & com.google.gwt.event.shared.HasHandlers> void fire(S source, com.google.gwt.core.client.JavaScriptObject jsObj)
S - The event sourcesource - the source of the handlersjsObj - the native eventpublic static com.google.gwt.event.shared.GwtEvent.Type<SelectionChangedHandler> getType()
protected void dispatch(SelectionChangedHandler handler)
dispatch in class com.google.gwt.event.shared.GwtEvent<SelectionChangedHandler>public final com.google.gwt.event.shared.GwtEvent.Type<SelectionChangedHandler> getAssociatedType()
getAssociatedType in class com.google.gwt.event.shared.GwtEvent<SelectionChangedHandler>public ListGridRecord getRecord()
public boolean getState()
public ListGridRecord[] getSelection()
getRecord()public ListGridRecord getSelectedRecord()
selectionType is "single", or if you only care about the first selected record in a multiple-record selection. To access all selected records, use ListGrid.getSelection instead.