#135 closed defect (fixed)
dojo widgets within dojo container widgets render inside each other
Reported by: | Michael Schall | Owned by: | anonymous |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Widgets | Version: | 0.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
With the following html, the second textbox is "rendered" inside the first.
<fieldset id="Fieldset1" dojoType="Fieldset">
<legend>Information</legend> <input id="Text1" dojoType="TextBox?" labelCaption="First Name:" type="text"
value="test" multiLine="False" />
<input id="Text2" dojoType="TextBox?" labelCaption="Last Name:" type="text"
value="test" multiLine="False" /> </fieldset>
If the 2 input fields were not in the fieldset widget, they are rendered correctly.
The dom tree looks like
<fieldset>
<span>
<label></label><br /> <input>
<span>
<label></label><br /> <input />
</span>
</input>
</span>
</fieldset>
when it should look like
<fieldset>
<span>
<label></label><br /> <input/>
</span> <span>
<label></label><br /> <input/>
</span>
</fieldset>
Sample code in : http://article.gmane.org/gmane.comp.web.dojo.user/982
Change History (2)
comment:1 Changed 16 years ago by
Milestone: | → 0.2release |
---|---|
Resolution: | → fixed |
Status: | new → closed |
this should be fixed in rev [1753], with [1752], [1751], and [1748] contributing