We are using a Tree control in IE11. There is a lot if user interaction so we rely heavily on JavaScript. Users are allowed to insert, delete and change the data. The final Tree must follow strict rules. While the user edits the Tree, we provide instant feedback by changing the background color of the cells in question. The same cell may be violating multiple rules, so the rules are prioritized.
We are evaluating the TreeGrid. How can we change the background color of a cell and reset it? Is there a method/property we missed? The getCellCSSText can be used to set the background color on a redraw, but would mean the entire tree would have to be redrawn and verified for each user change.
We are evaluating the TreeGrid. How can we change the background color of a cell and reset it? Is there a method/property we missed? The getCellCSSText can be used to set the background color on a redraw, but would mean the entire tree would have to be redrawn and verified for each user change.
Comment