Talk:XUL Tutorial:Custom Tree Views
From MDC
[edit] source file
In this example http://developer.mozilla.org/samples/xultu/examples/ex_treeview_1.xul.txt from tutorial xul is bug in the code:
Bug:
if (column == "namecol") return "Row "+row;
Valid:
if (column.id == "namecol") return "Row "+row;
Ptak82 19:21, 23 January 2007 (PST)