Interface ColumnEventInfo

Column information (passed to the render event).

interface ColumnEventInfo {
    elem: null | HTMLSpanElement;
    id: string;
    idx: number;
    info: ColumnDefinition;
}

Properties

Properties

elem: null | HTMLSpanElement

The cell's <span class='wb-col'> element (null for plain trees).

id: string

Column ID as defined in tree.columns definition ("*" for title column).

idx: number

Column index (0: leftmost title column).

The value of tree.columns[] for the current index.