Directing the Grid's Output?
This sort of thing:
document.write(oGrid);
just won't work for what I'm doing. I need the grid to output itself in a specific location on my page. It's like I need something like this:
var divMyLocation = document.getElementById('divMyLoc');
divMyLocation.innerHTML = oGrid.Write();
See what I mean?
How can I make the grid output itself without using document.write()?
Thanks.
document.write(oGrid);
just won't work for what I'm doing. I need the grid to output itself in a specific location on my page. It's like I need something like this:
var divMyLocation = document.getElementById('divMyLoc');
divMyLocation.innerHTML = oGrid.Write();
See what I mean?
How can I make the grid output itself without using document.write()?
Thanks.
Breck
July 12,