Browse Source

Fix code example (#11487)

Fix example of using grid.setStyleGenerator in one line
tags/8.8.0.beta1
A.Mahdy AbdelAziz 5 years ago
parent
commit
a996b95422
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      documentation/components/components-grid.asciidoc

+ 3
- 3
documentation/components/components-grid.asciidoc View File



[source, java] [source, java]
---- ----
grid.setStyleGenerator(person -> {
grid.setStyleGenerator(person ->
// Style based on alive status // Style based on alive status
person.isAlive() ? null : "dead";
});
person.isAlive() ? null : "dead"
);
---- ----


You could then style the rows with CSS as follows: You could then style the rows with CSS as follows:

Loading…
Cancel
Save