Searched refs:Columnset (Results 1 - 5 of 5) sorted by relevance

/yui3/src/datatable-deprecated/js/
H A Dcolumnset.js5 * The Columnset class defines and manages a collection of Columns.
7 * @class Columnset
11 function Columnset(config) { function
12 Columnset.superclass.constructor.apply(this, arguments);
20 Y.mix(Columnset, {
40 * @description Array of column definitions that will populate this Columnset.
55 Y.extend(Columnset, Y.Base, {
208 // Save to the Columnset instance
404 Y.Columnset = Columnset;
[all...]
H A Ddatatable-base.js80 * @description Pointer to Columnset instance.
81 * @type Array | Y.Columnset
221 * @description Converts Array to Y.Columnset.
222 * @param columns {Array | Y.Columnset}
223 * @return {Columnset}
227 return YLang.isArray(columns) ? new Y.Columnset({definitions:columns}) : columns;
231 * Updates the UI if Columnset is changed.
541 * @param cs {Columnset} New Columnset.
/yui3/build/datatable-base-deprecated/
H A Ddatatable-base-deprecated-debug.js283 * Reference to Column's current position index within its Columnset's keys
285 * level child Columns. Value is set by Columnset code.
294 * Value is set by Columnset code
302 * Number of cells the header spans. Value is set by Columnset code.
311 * Number of rows the header spans. Value is set by Columnset code.
320 * Column's parent Column instance, if applicable. Value is set by Columnset
408 * The Columnset class defines and manages a collection of Columns.
410 * @class Columnset
414 function Columnset(config) {
415 Columnset
[all...]
/yui3/src/datatable/js/
H A Dcore.js107 // TODO: change to setter to coerce Columnset?
294 If a Columnset object is passed, its raw object and array column data will
297 WARNING: `get('columnset')` will NOT return a Columnset instance as of
301 @type {Object[]|Columnset}
930 expect a Columnset instance returned from `get('columnset')`.
1370 `columns` attribute. If a Columnset is object is passed, its basic object
1374 @param {Array|Columnset} val The columnset value to relay
1381 if (val && Y.Columnset && val instanceof Y.Columnset) {
/yui3/build/datatable-core/
H A Ddatatable-core-debug.js109 // TODO: change to setter to coerce Columnset?
296 If a Columnset object is passed, its raw object and array column data will
299 WARNING: `get('columnset')` will NOT return a Columnset instance as of
303 @type {Object[]|Columnset}
932 expect a Columnset instance returned from `get('columnset')`.
1372 `columns` attribute. If a Columnset is object is passed, its basic object
1376 @param {Array|Columnset} val The columnset value to relay
1383 if (val && Y.Columnset && val instanceof Y.Columnset) {

Completed in 35 milliseconds