Now I need to develop a table with a fixed number of rows and columns, regardless of whether it is an empty table or contains data. I have set startRows
and startCols
, but once data is loaded into the table, startRows
and startCols
become ineffective. I have also checked the documentation and confirmed that it is designed this way. Is there any way to achieve my current requirement?
How can I make startRows and startCols effective?
Hi @yaopeng1
This is the correct behavior, as you also mentioned. startRows/Cols
are options designed only to set empty table and once the data is loaded it’s overridden. Instead you can use maxCols
and maxRows
to define the limit of rows and columns.