Lines Matching refs:key
33 * Object storing key data.
71 * Gets an array of values based on a key.
74 * @param {String} key Value key associated with the data array.
79 _getKeyArray: function(key, data)
94 labels[i] = obj[key];
96 this._indices[key] = keyArr;
101 * Sets data by key
104 * @param {String} key Key value to use.
108 _setDataByKey: function(key)
124 labels[i] = obj[key];
126 this._indices[key] = arr;
127 this.get("keys")[key] = labels.concat();
132 * Returns an array of values based on an identifier key.
203 * Returns a value based of a key value and an index.
206 * @param {String} key value used to look up the correct array
210 getKeyValueAt: function(key, index)
214 if(keys[key] && keys[key][index])
216 value = keys[key][index];