Conditional Cell/Row Rendering #2015
-
|
Hi, I apologise if I've missed something in the documentation or code. But nothing jumps out at me immediately. I am wondering whether conditional cell/row rendering exists? Something that loops throw the data and highlights rows/cells programmatically. A theorised example would be a callback. An example of a rowClass one rowClass: (item: any) => {
return item.country === 'UK' ? 'row-blue': '';
}Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
use a Custom Formatter or change CSS styling dynamically which requires much more work, click the last button in the example shown below to highlight row with background color or look at this Stack Overflow question/answer (which I have just use Google to find it) |
Beta Was this translation helpful? Give feedback.
-
|
Angular-Slickgrid v9.11 now has full event types support which now also allows to enable Strict Templates (which wasn't possible before). |
Beta Was this translation helpful? Give feedback.
Angular-Slickgrid v9.11 now has full event types support which now also allows to enable Strict Templates (which wasn't possible before).