Why does ConfigSelect has missing properties (toggleable, headerCheckbox)?

Why does ConfigSelect has missing properties (toggleable, headerCheckbox)?

mnemomnemo Posts: 2Questions: 1Answers: 0

With datatables.net-select v3.1.1 installed, ConfigSelect is defined as

interface ConfigSelect {
    /**
     * Indicate if the selected items will be removed when clicking outside of the table
     */
    blurable?: boolean;

    /**
     * Set the class name that will be applied to selected items
     */
    className?: string;

    /**
     * Enable / disable the display for item selection information in the table summary
     */
    info?: boolean;

    /**
     * Set which table items to select (rows, columns or cells)
     */
    items?: string;

    /** Set keyboard accessability (tab and arrow keys) */
    keys?: boolean;

    /**
     * Set the element selector used for mouse event capture to select items
     */
    selector?: string;

    /**
     * Set the selection style for end user interaction with the table
     */
    style?: StyleType;
}

which does not include certains properties that should be available (see https://datatables.net/reference/option/?extn=select ) such as headerCheckbox, toggleable, keysWrap.

How can these become available?

Answers

  • allanallan Posts: 65,162Questions: 1Answers: 10,796 Site admin

    Good point - many thanks for pointing out that I missed them. I've added them now and it will be in the next release.

    Allan

  • mnemomnemo Posts: 2Questions: 1Answers: 0

    Thank you very much!

Sign In or Register to comment.