Hey Guys,
I have to design a grid in such a way that grid columns should occupies whole width of the grid.
Please note that grid data is dynamic and number of columns are not fixed.
Please help me.
Hi!
U can use this logic:
let x be the number of columns.
so the width of a single column = 100/x;
So set the width to "100/x %" for each column. By this way the columns will fit the grid, but the width of the columns will be same.