Changes between Initial Version and Version 1 of Ticket #8650
- Timestamp:
- Feb 15, 2009, 2:53:40 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8650
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
invalid
-
Property
Status
changed from
-
Ticket #8650 – Description
initial v1 1 This code won't apply the specified width of the editor, even though "style" is an official attribute of the FilteringSelect:2 1 This code won't apply the specified width of the editor, even though "style" is an official attribute of the !FilteringSelect: 2 {{{ 3 3 <span dojoType="dijit.InlineEditBox" 4 4 editor="dijit.form.FilteringSelect" 5 5 editorParams="{store: storeExample,searchAttr: 'name', style: 'width: 50px'}">example</span> 6 7 Expected result: width of FilteringSelect should be 50px.6 }}} 7 Expected result: width of !FilteringSelect should be 50px. 8 8 9 9 Actual result: width is unaffected -- creates widget using default width. 10 10 11 11 And this reference works properly: 12 12 {{{ 13 13 <select dojoType="dijit.form.FilteringSelect" value="1" 14 14 store="storeExample" style="width: 50px;"> 15 15 </select> 16 }}}