Hi @Bruno Marques
We do found an issue on our AutoGenerated grid, I already opened a support issue for analysis, thanks for exposing this issue. =D
I presume your custom page will work after the fix. But something that we never found so far, is the usage of JS to build columns, so I would like to first understand the reason, and we can think on a best solution for you. (Code sample bellow)
var column41107 = new wijmo.grid.Column();
column41107.binding = 'TEST1';
column41107.title = 'test1';
column41107.dataType = 1;
column41107.align = 'left';
gridColumns.push(column41107);
Using the code above, your solution will bypass a lot of OS control-code that is responsible for handling the grid and its features, and you may miss some features on the way. I would say, we can't even support future issues that you may have.
Considering OS as a low code solution, we try to encapsulate the work of building grid and columns, is there a specific need for you to create columns in the above manner?
Are you missing a feature on the grid?
What you need is a way to add dynamically columns? If so, I would say we are not prepare for it, dynamical columns, may be the reason for having different datasets(with different structures) on the grid, and this we don't support. In this case I suggest you use multiple pages, each of them with the specific structure you need.
Kind Regards
Ricardo Valim