Loading grid config from backend

Hi,
in 4.5 there was a possibility to load the config (columns, headers, …) from a backend url.

How would you do that in suite 8?

Thank you for your help
Robert

You may use any ajax request to load your config from backend to your grid:

dhx.ajax.get(url).function (data) {
    grid = new dhx.Grid("gridbox",data)
})
1 Like