Updating Grid Cells From Child Window
I am struggling to update a cell in an AW.GRID on a parent window from a child window. I can update the innerHTML element of the <span> tag but if you edit the cell, you loose the value posted.
This is my attempt to pass a value back (Col and roware the col and row numbers that I passed to the child window via $_GET)
[code[opener.document.getElementById('aw37-cell-'+col+'-'+row).innerHTML = test;[/code]
This works and puts the text into the cell but I can do noting with it??
Please help
This is my attempt to pass a value back (Col and roware the col and row numbers that I passed to the child window via $_GET)
[code[opener.document.getElementById('aw37-cell-'+col+'-'+row).innerHTML = test;[/code]
This works and puts the text into the cell but I can do noting with it??
opener.document.getElementById('aw37-cell-'+col+'-'+row).value = test;
This doesnt
opener.document.getElementById('aw37-cell-'+col+'-'+row).setCellText() = test;
This doesnt
opener.document.getElementById('aw37-cell-'+col+'-'+row).setCellText(test,col,row);
This doesnt
Please help
Jez (True Track Software)
January 14,