Build: 4.0
Topic: Listgrid display
|
|
||
|
Hi
function addCol(){
elm1.beginUpdate();
var col = {}
elm1.addCol("Table1");
elm1.addCol("Table2");
elm1.data.cols[1].text
elm1.addRow(col);
elm1.addRow(col);
elm1.addRow(col);
elm1.addRow(col);
elm1.endUpdate();
elm1.refresh();
};
thanks Max |
||
|
|
|
|
||
|
This line: elm1.data.cols[1].text ... did you mean for that to actually change the text? elm1.data.cols[1].text = "Loren Ipsum"; Should work fine. |
||
|
|
