How can I set an icon for some column in dojox.grid.TreeGrid / LazyTreeGrid ?

In dijit.Tree I can overload getIconClass method to acomplish this.

link|improve this question

1  
A formatter function(I don't know if TreeGrid supports it) ? – xyu Feb 7 at 21:06
feedback

1 Answer

up vote 2 down vote accepted
+100

You can use CSS for that:

.dojoxGridCell[role="gridcell"][idx="3"]:before
{
  content: url(icon.png);
}

This will display icon.png in grid cells (indicated by class dojoxGridCell and attribute role="gridcell") in column with the index 3.

This is using generated content so you might want to consult the support matrix. If you need to support IE6/IE7 then you will need a fallback solution, all other browsers will do fine.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.