error in setXML in case of XMLDocument object
Hi,
in the documentation of <a href="http://www.activewidgets.com/aw.xml.table/xml.html"> http://www.activewidgets.com/aw.xml.table/xml.html</a>
I read that I can create table using array and using XMLDocument object as well. But my grid is empty after the creation of my table. Here is the part of my code:
in the documentation of <a href="http://www.activewidgets.com/aw.xml.table/xml.html"> http://www.activewidgets.com/aw.xml.table/xml.html</a>
I read that I can create table using array and using XMLDocument object as well. But my grid is empty after the creation of my table. Here is the part of my code:
xmldoc = new ActiveXObject("Msxml2.DOMDocument.3.0");
xmldoc.async =false;
xmldoc.loadXML(strXML);
table.setXML(xmldoc);
grid.setColumnCount(4);
grid.setRowCount(row);
grid.setCellModel(table);
grid.refresh();
chirak
January 29,