Changeset 5695
- Timestamp:
- 09/18/06 12:00:42 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/widget/ComboBox.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/widget/ComboBox.js
r5667 r5695 226 226 // HTML specific stuff 227 227 autoComplete: true, 228 formInputName: "",229 228 name: "", // clone in the name from the DOM node 230 229 textInputNode: null, … … 549 548 dojo.html.applyBrowserClass(this.domNode); 550 549 551 // FIXME: need to get/assign DOM node names for form participation here. 552 this.comboBoxValue.name = this.name; 550 var source = this.getFragNodeRef(frag); 551 if (! this.name && source.name){ this.name = source.name; } 552 this.comboBoxValue.name = this.name; 553 553 this.comboBoxSelectionValue.name = this.name+"_selected"; 554 554 555 var source = this.getFragNodeRef(frag);556 555 dojo.html.copyStyle(this.textInputNode, source); 557 556