Custom Query (18300 matches)
Results (130 - 132 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#133 | fixed | isContainer without template string error | ||
Description |
If a container element(isContainer=true) does not have a templateString, there seems to be a problem when creating the sub compoennts. I debugged into the code and found that if your html is setup such that there is a text node in between the start tag and end tag of the container widget when the extra widgets are appended in dojo.dom.insertAtPosition, the ref parameter is pointing to a text node, which does not support appendChild. Sample html that causes problem: <fieldset dojoType="Fieldset">
</fieldset> The tab before the input tag is turned into a text node. I worked around problem 1 by adding a templateString="<fieldset ></fieldset >". Sample code in: http://article.gmane.org/gmane.comp.web.dojo.user/981 |
|||
#134 | wontfix | non dojo widget in dojo container widget is not rendered | ||
Description |
If I have a non dojo widget in a dojo container widget, it is not rendered. In the example below, the legend element is thrown away. <fieldset dojoType="Fieldset">
</fieldset> Sample code in: http://article.gmane.org/gmane.comp.web.dojo.user/981 |
|||
#135 | fixed | dojo widgets within dojo container widgets render inside each other | ||
Description |
With the following html, the second textbox is "rendered" inside the first. <fieldset id="Fieldset1" dojoType="Fieldset">
value="test" multiLine="False" />
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>
</fieldset> when it should look like <fieldset>
</fieldset> Sample code in : http://article.gmane.org/gmane.comp.web.dojo.user/982 |