Multiple Data Grid Extensions

0
Hi,   I have the requirement of applying a CSS change to multiple cells within a data grid. I have attempted to use multiple data grid extensions on the same data grid to accomplish this, however it would appear that the first extension is the only one applied. Is is possible to use multiple?   Thanks.
asked
1 answers
1

Hi Johnny,

You can set a class on a datagrid column and give every cell inside that column a modified CSS styling.

It is also possible to, for instance, style only positive booleans inside a datagrid.
by accessing similar to

td[title="true"]

In both cases it requires some custom front-end styling in your project.

answered