hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface for a data source change event.

    interface IDataSourceChange {
        changeType: DataSourceChangeType;
        index?: number;
        itemId?: string;
        newData?: JsonData;
        rowId?: string;
        visibility?: boolean;
    }
    Index

    Properties

    The type of change.

    index?: number

    The index of the row affected, if any.

    itemId?: string

    The item ID affected, if any.

    newData?: JsonData

    New data for the change, if any.

    rowId?: string

    The row ID affected, if any.

    visibility?: boolean

    Visibility flag for the change, if any.