Gird column.setwidth(100px) not work
That’s not a lot of detail, but I’m guessing you’re seeing columns wider than 100px even though you set them to 100px? If so, that’s because Grid columns by default expand from their nominal widths so that they fill the available horizontal space in the Grid. You can disable that by setting col.setFlexGrow(0);
it’s work . Thank you sir👍