Combo box in table cell do not resize

I’m trying to add combox boxes in a table. However, when resizing columns, combo boxes are not resized.

Is there a way to achieve this?

I’m using a table.addContainerProperty(“Combo box”, Select.class, null);

You need to specify the width of all of the ComboBoxes as 100%.

works great. Thanks a lot.