Expression Language Reference
    Preparing search index...

    Context for expression that control whether a cell can be editated

    interface CellEditContext {
        $editable(value: any): undefined;
        $updates(
            dataSet: string,
            row: any,
            column: string,
            key_columns: string[],
        ): undefined;
    }
    Index

    Methods

    • Editable flag Calling this functtion with a falsy value will result in the edit being cancelled

      Parameters

      • value: any

      Returns undefined

    • Explicitly update a particular alternate cell

      Parameters

      • dataSet: string

        name of input dataset

      • row: any

        the specific row to update

      • column: string

        name of column to update

      • key_columns: string[]

        index columns for write

      Returns undefined