Changeset 14166
- Timestamp:
- 06/26/08 11:06:59 (7 months ago)
- Files:
-
- 1 modified
-
dojox/trunk/widget/PlaceholderMenuItem.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojox/trunk/widget/PlaceholderMenuItem.js
r14165 r14166 91 91 if(child._isPlaceholder && (!label || child.label == label)){ 92 92 r.push(child); 93 }else if(child. popup && child.popup.getPlaceholders){93 }else if(child._started && child.popup && child.popup.getPlaceholders){ 94 94 r = r.concat(child.popup.getPlaceholders(label)); 95 }else if(!child._started && child.dropDownContainer){ 96 var node = dojo.query("[widgetId]", child.dropDownContainer)[0]; 97 var menu = dijit.byNode(node); 98 if(menu.getPlaceholders){ 99 r = r.concat(menu.getPlaceholders(label)); 100 } 95 101 } 96 102 }, this);