Need a special offer?Find out if your project fits.
+
All documentation
API reference
  • API Reference for older versions
  • cellclick

    [starting from version: 2.3]

    It is triggered when a cell is clicked on the grid.

    Data passed to the handler

    Parameter/Type Description
    cell
    CellDataObject
    Contains information about the clicked cell.

    Example

    flexmonster.on('cellclick', function(cell) {
        alert(
            "Click on cell - row: " +
            cell.rowIndex + ", column: " +
            cell.columnIndex +
            ", label: " +
            cell.label);
    });

    Open the example on JSFiddle.

    See also

    chartclick
    on
    off