Dynamic List
I am grabbing info from WMI and trying to populate a grid with the data. For each item in WMI it calls the dgdata function and is supposed to append the new data to the variable myData. When the grid is displayed it displays all the data I want but it doesn't break up the cells it's all in the first cell for all rows.
var myData
var myColumns = [
"Process Name", "PID", "PUSE"
];
function dgdata(PName,PID,PUSE)
{
myData = [myData +=[PName,PID,PUSE]];
}
var myData
var myColumns = [
"Process Name", "PID", "PUSE"
];
function dgdata(PName,PID,PUSE)
{
myData = [myData +=[PName,PID,PUSE]];
}
SqeekyPeeps
May 8,