I have a treeGrid in smartclient. now I want to color some set of line like line number 3-5 , 7-11 etc. I am using an external button which passes the values to the smartclient. can anybody tell me how to do that thing. button is passing the value and it's working fine. but the problem is, where to get the value in smartclient and how can I color that set of lines.
|
feedback
|
|
Since TreeGrid is a ListGrid, I would imagine you could override the getCellStyle function and set the colors as you see necessary. http://www.smartclient.com/docs/8.1/a/b/c/go.html#search=getcellstyle So basically in pseudo code:
where style1 and 2 are defined in css | |||||
feedback
|
|
And how to custom and keep states with using specific style name (myStyle) like :
I try to use @Override of getCellStyle for returning "myStyleA" or "myStyleB" which i want conserve dynamics suffixs : "Dark", "Over", "Selected", ... An idea ?... http://www.smartclient.com/smartgwt/javadoc/com/smartgwt/client/widgets/grid/ListGrid.html
| |||
|
feedback
|