Need a special offer?Find out if your project fits.
+
API reference
  • API Reference for older versions
  • Table of contents

    celldoubleclick

    [starting from version: 2.3]

    It is triggered when a cell is double clicked on the grid. For CSV and JSON data, the event is also triggered for the drill-through view.

    Data passed to the handler

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

    Example

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

    Open the example on JSFiddle.