Cell Editing

24 May 20191 minute to read

IMPORTANT

This feature is applicable only for the relational data source.

Cell editing allows you to edit and alter the values in the PivotGrid. The summary values will be recreated based on edited values. By selecting multiple cells (like in cell selection feature), you can edit multiple cells at the same time.

You can enable the cell editing option in the PivotGrid by setting the enableCellEditing property to true.

  • HTML
  • <script type="text/javascript">
        $(function() {
            $("#PivotGrid1").ejPivotGrid({
                //...
                enableCellEditing: true
            });
        });
    </script>

    Cell editing in JavaScript pivot grid control