javascript - How to make a Vaadin-grid column of width 1px? -
i tried make column width of 1px in vaadin grid. tried following:
grid.columns[0].flex = 0; grid.columns[0].minwidth = 1; grid.columns[0].maxwidth = 1; grid.columns[0].width = 1;
it still has width of 48px.
how make vaadin-grid column of width 1px?
you can try set padding of .vaadin-grid-cell
elements 0. @ least closer 1px, seems still has @ least 10px minimum width.
Comments
Post a Comment