BrightSide Workbench Full Report + Source Code
org.turro.zkoss.grid.CancelEventListener Class Reference
Inheritance diagram for org.turro.zkoss.grid.CancelEventListener:
Collaboration diagram for org.turro.zkoss.grid.CancelEventListener:

Public Member Functions

 CancelEventListener (EditableGrid grid)
 
void onEvent (Event event) throws Exception
 
- Public Member Functions inherited from org.turro.zkoss.grid.EditableEventListener
 EditableEventListener (EditableGrid grid)
 

Additional Inherited Members

- Protected Attributes inherited from org.turro.zkoss.grid.EditableEventListener
EditableGrid grid
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 29 of file CancelEventListener.java.

Constructor & Destructor Documentation

◆ CancelEventListener()

org.turro.zkoss.grid.CancelEventListener.CancelEventListener ( EditableGrid  grid)

Definition at line 31 of file CancelEventListener.java.

31  {
32  super(grid);
33  }

Member Function Documentation

◆ onEvent()

void org.turro.zkoss.grid.CancelEventListener.onEvent ( Event  event) throws Exception

Definition at line 36 of file CancelEventListener.java.

36  {
37  Component comp = event.getTarget();
38  Row row = Components.from(comp).parent(Row.class);
39  if(row != null) {
41  }
42  }
Here is the call graph for this function:

The documentation for this class was generated from the following file: