Lines Matching refs:state
353 Subscribes to state changes that warrant updating the UI, and adds the
399 Supports the special subattribute "sortBy.state" to get a normalized JSON
400 version of the current sort state. Otherwise, returns the last assigned
412 table.get('sortBy.state'); // { key: 'username', dir: 1 }
416 table.get('sortBy.state'); // [{ key: "lastName", dir: 1 }, { key: "firstName", dir: -1 }]
426 var state, i, len, col;
432 if (detail === 'state') {
433 state = [];
437 state.push({
444 return { state: (state.length === 1) ? state[0] : state };
451 Sets up the initial sort state and instance properties. Publishes events
452 and subscribes to attribute change events to maintain internal state.
669 // Purge current sort state from column configs
760 indicate sort state and sortability.