datatables.net-editor-server
    Preparing search index...

    Interface IDtResponse

    Response object for DataTables and Editor

    interface IDtResponse {
        cancelled?: string[];
        columnControl?: { [field: string]: object };
        data?: Record<string, any>[];
        debug?: any[];
        draw?: number;
        error?: string;
        fieldErrors?: IDtError[];
        files?: object;
        options?: Record<string, Record<string, any>>;
        recordsFiltered?: number;
        recordsTotal?: number;
        searchBuilder?: any;
        searchPanes?: any;
        upload?: { id: string };
    }
    Index

    Properties

    cancelled?: string[]

    Editor - Rows which have not been acted upon.

    columnControl?: { [field: string]: object }
    data?: Record<string, any>[]

    DataTables - Array of row information.

    debug?: any[]

    Debug information if enabled by Editor.debug()

    draw?: number

    DataTables SSP - draw counter.

    error?: string

    DataTables and Editor - General error string.

    fieldErrors?: IDtError[]

    Editor - Field information errors.

    files?: object

    Editor - file information.

    options?: Record<string, Record<string, any>>

    Editor - select, radio and checkbox options.

    recordsFiltered?: number

    DataTables SSP - number of records after filtering.

    recordsTotal?: number

    DataTables SSP - number of records in the result set.

    searchBuilder?: any

    DataTables SSP - SearchBuilder Options

    searchPanes?: any

    DataTables SSP - SearchPanes Options

    upload?: { id: string }

    Editor - Upload complete file id.