Reputation: 2460
I'm trying to create a row editor.
When using the default example code for the grid link, when I'm styling my element im not able to do width: 100%
the td the element is appended onto has the correct colspan
in my case 6 but the width of the element is no where near the width of the 6 columns. The width feels more like one column.
Upvotes: 0
Views: 247
Reputation: 99
Can you set display: flex
for the row details for it to take full space? You can find an example here: https://cdn.vaadin.com/vaadin-core-elements/master/vaadin-grid/demo/other.html
Upvotes: 0