We are dynamically creating some tables as configured by users.
Like there is a user_added_columns table where user add col1, its type and other params, col2, its type and params. We analyse the data and create tables programatically from code. Later during some batch operations data is inserted into tables
Now i need to show those data in the jmix as paginated
So consider there is a table in database user_ravi_created_table with columns id, name, age, department etc. And there is about 1000 rows in that table
How can i show the data in UI. Surely i cant create a entity for that because there will be 1000s of table like that.
So basically my question is how to display data from a mysql table that is not an entity in code using table or datagrid