Lines Matching defs:value
59 * @param {Object} cfg Object with configuration property name/value pairs.
132 * defines how the statically defined value field should be protected
135 * By default if the value is an object literal or an array it will be "shallow"
136 * cloned, to protect the default value.
154 value:false
168 value:false
224 * @param {Object} cfg Object with configuration property name/value pairs
283 * This value is cached the first time the method, or _getAttrCfgs, is invoked. Subsequent invocations return the
284 * cached value.
300 * This value is cached the first time the method, or _getClasses, is invoked. Subsequent invocations return
301 * the cached value.
363 value:userVals[attr]
430 * The method will protect the attribute configuration value to protect the statically defined
431 * default value in ATTRS if required (if the value is an object literal, array or the
463 val = cfg.value;
468 Y.log('Cloning default value for attribute:' + attr, 'info', 'base');
469 cfg.value = Y.clone(val);
471 Y.log('Merging default value for attribute:' + attr, 'info', 'base');
472 cfg.value = Y.merge(val);
474 // else if (clone === false), don't clone the static default value.
484 if (path && aggAttrs[attr] && aggAttrs[attr].value) {
485 O.setValue(aggAttrs[attr].value, path, val);
508 * @param {Object} userVals Object with configuration property name/value pairs