Show TOC

Syntax documentationonCellClick Locate this document in the navigation structure

The event is fired when the user clicks on one cell of a column. Every column (not cell) can have its own event handling routine.

Example

Syntax Syntax

  1.     public TableViewExample() {
            model = this.createNewTable(model);
    
            /* getting column name and define event handler for the column */
            TableColumn column = model.getColumn("1stColumn");
            /* Now define event handler name/method - the method 
               has to be declared in the DynPage */
            column.setOnCellClick("1stColumn", "onFirstColumnClick");
            /* Do the same for the other 2 columns in the model */
            column = model.getColumn("2ndColumn");
            column.setOnCellClick("2ndColumn", "onSecondColumnClick");
            column = model.getColumn("3rdColumn");
            column.setOnCellClick("3rdColumn", "onThirdColumnClick");
        }
    
End of the code.