How do we set minimum width for Grid Column
?
The following has no effect:
column.getElement().getStyle().set("min-width", "150px");
The width you set for a column is effectively min-width. When you set flex-grow to zero it becomes a fixed width.
Thanks Jouni