Lines Matching refs:depth
83 * @attribute depth
88 * @description Number representing the depth of this Widget relative to
91 depth: {
97 depth = -1;
101 depth = (depth + 1);
111 return depth;
281 * @description Returns the Widget instance at the specified depth.
282 * @param {number} depth Number representing the depth of the ancestor.
285 ancestor: function (depth) {
290 if (this.get("depth") > depth) {
294 while (parent != root && parent.get("depth") > depth) {