So I have only 1 model and 10 tables for example, I want to bring all the data from the tables into my 1 model, so I can use the Grid/Crud
search/paginator
etc.
If I use setSource
on the grid (and not setModel), I lose pagination, quick and advanced search.
Note: Tables have no relations between them (they just have the same columns and different data) and we are talking about millions of records.
Tried custom unions with DSQL
but it's really slow and I have no paginator in the grid.
Any ideas ?