I am having trouble trying to change the structure of a datagrid after receiving new information. I need to be able to change the number of columns with each query.
The javascript code that I use to create the grid
function setgrid(){ var gridLayout = []; var key, i; for(i = 0; i < 10; i++) { key = i + ""; gridLayout.push({ field: key, name: key, editable: false }); }
and html:
<div id="gridContainer" style="width: 650px; height: 600px; border: 1px solid silver;" />
How do I change the grid to have a new layout of 5 columns?
source share