Hi @Pallavi_374858
Here are 2 approach that could help:
- option1
add a new column to the grid that will be hidden for display
populate this column with a specific string (for example "empty") for the rows that are empty - this will require to write a service that scan the values before populating the grid.
Apply a state definition for the rows that have "empty" in that hidden column
-option 2
If some of the columns are of type number, define a state definition with default state being the red state for empty column, then an other state for <numeric column value> less than <a value higher than the max possible>
Apply that state to the rowFormat property. every rows with a value will have the second state while the one with no value will get the default state.
Hope this helps
Christophe