Hello, I'm trying to change the number of cols and rows at runtime, with:
table.set_opts(TableOpts {
cell_align: enums::Align::Wrap,
editable: false,
rows: 55,
cols: 66,
..Default::default()
});
Is there any other way to change those?
I've tried with:
table.set_rows(55);
But, not working.