Adding class to the row based on the columan values
How to add css class row
(4 posts) (2 voices)-
-
Hi,
you can use thedbr.rowclass
-command to do this.--
myDBR Team -
I want to add more then two clases based on condition
-
The parameter to the
dbr.rowclass
-code is a column reference. You can have as many CSS classes as you want in the column. Separate the class names with space.Code:
select 'dbr.rowclass', 'rc';
select 'data', 'c1 c2' as 'rc';Will give you a row with classes c1 and c2.
--
myDBR Team
Reply
You must log in to post.