
March 14th, 2004, 01:07 PM
|
|
Contributing User
|
|
Join Date: Jun 2003
Posts: 373
Time spent in forums: 3 h 49 m 6 sec
Reputation Power: 6
|
|
|
Having trouble putting checkbox in treecell
In the XUL tutorial it says I can do this :
Code:
<treecell>
<checkbox checked="true"/>
</treecell>
and so here is my code:
Code:
<treerow id="checkbox_row">
<treecell id="checkbox_cell">
<checkbox id="some_checkbox" checked="true"/>
</treecell>
</treerow>
which does NOT put a checkbox in my tree when I load the application. I was able to put a checkbox in a grid element and that worked, but I need a tree. Am I missing something obvious?
|