Grid resize column

Hi guys,
at the moment I’m trying to build a risizable grid. This is necessary, cause of the big content. The user should do it whith the mouse.

Is or will there a way to do this?

Hi,

If you want to allow users to resize the full grid, or any other component, you need to implement some client side extensions which hooks to the specified component and handle browser mouse events. Maybe adding some elements around or wrapping the component you’re targetting.

Please read here more about extensions:

https://vaadin.com/wiki/-/wiki/Main/Creating+a+component+extension


https://vaadin.com/book/-/page/gwt.extension.html

Also, have a look if this works:
https://vaadin.com/directory#addon/resizablecsslayout-add-on
. It implements the resize on a CSSLayout. Maybe you can add your grid inside that layout with size full and hopefully it will resize along with the CSSLayout.