(Flow) Grid Component get size of resized grid column

Is there a way to get the size of a resized column of a grid. (Vaadin 12)

col.setWidth("100px");
col.setResizable(true);
...
col.getWidth();

It it possible to set a width of column but it is not possible read the correct with after resizing it in the browser, it will always say “100px”.
Is there some kind of css value or attribute i can read the correct size from?

Hi Jonas,

I’m waiting/hoping for that functionality too :-).

It looks like you can listen for all grid events in Vaadin 13, so it might be possible to listen for column resize events… I’ve not tried it yet, hope to soon.

S.