Hi.
I am testing the new version of the Grid component in version 8.1.beta1 and I have problems with row height.
The problem is exactly when I create a RadioButtonGroup with the method:
Grid.addComponentColumn (keyValue → {
RadioButtonGroup radio = new RadioButtonGroup <> (“Radio”);
radio.setItemCaptionGenerator (KeyValue :: getName);
radio.setDataProvider (dataProvider);
return radio;
});
It works correctly (you can see the attached image) but the height of the row does not adjust to the height of RatioButtonGroup component.
In order to do so, i would have to use the Grid.setRowHeight(); But doesnt ajust the height, and the value -1 does not work for me … does anyone know I would have to do?