How can I style my dataGrid in flowUI as per Vaadin documentation here?
I tried the following but it looks like setPartNameGenerator is not recognized in Jmix, missing anything?
allowanceRateEmployeeTable.setPartNameGenerator(person -> {
if (person.getExcludeEmployee() ==true)
return "high-rating";
return null;
});