Applying slickgrid formatting to a specific row

Is it possible to apply formatting to a specific row in Slickgrid?

I know that you can apply formatting rules through columns, but I need to apply a formatting rule to a row.

i.e. I have a β€œfinal” line on my grid - so I want to make the line bold or something that stands out from other lines.

+5
source share
1 answer

Easy - https://github.com/mleibman/SlickGrid/wiki/Providing-data-to-the-grid .

In short, we implement getItemMetadataand specify an override formatterbased on the line number. This is exactly what slick.groupitemmetadataprovider.js does when used in conjunction with a DataView.

+6
source

All Articles