Searched defs:values (Results 1 - 2 of 2) sorted by relevance

/yui3/src/dataschema/js/
H A Ddataschema-xml.js63 The keys are the field identifier `key`s, and the values are the data
64 values extracted from the nodes or attributes found by the field `locator`
68 XPath locators in _schema.metaFields_. The collected values will be
106 locate/assign values in the response records. See above for
187 var values=[], locatorArray = locator.split(/\b\/\b/), i=0, l=locatorArray.length, location, subloc, m, isNth;
193 values = context.selectNodes(locator);
233 values[0] = {value: context};
237 values[0] = {value: context.innerHTML};
241 values = Y.Array(context.childNodes, 0, true);
251 if (this.index >= this.values
[all...]
/yui3/src/yui/js/
H A Dyui-object.js178 * Returns an array containing the values of the object's enumerable keys.
180 * Note that values are returned in enumeration order (that is, in the same
186 * Y.Object.values({a: 'foo', b: 'bar', c: 'baz'});
189 * @method values
191 * @return {Array} Array of values.
194 O.values = function (obj) {
198 values = [];
201 values.push(obj[keys[i]]);
204 return values;
234 return Y.Array.indexOf(O.values(ob
[all...]

Completed in 17 milliseconds