I am using a table widget that is populated from an API. That all works great! What I would like to do is have the # of table rows grow to match the number of returned data items. For my API this is only up to 50 items (not too much data).
Currently, the table widget automatically sets up pagination for 10 rows based on the size of the table. My table happens to be at the bottom of my UI so having it grow based on the number of returned rows from the API would not be a problem.
Either having the table automatically grow the number of rows on a single table page would be great or being able to dynamically set the # of rows per table page would be great (seems to be a read only property for # of rows per table page?)
Any thoughts on how I can grow the table based on the # of returned rows? Thanks!