The lookup page contains a radgrid and a radiobutton to select the row on which i populate the textboxes on the parent page.
RadGrid Version :2009.2.826.20
Trying to pass an object from a showmodaldialog from the child to the parent .
I get an alert that says undefined:
on the parent:
These are from a slightly larger context, but hope you get the picture from
these snippets.
The Actual problem occurs in Chrome Browser . When i select a row and return the value it is able to send the values through the windows.returnValue of the lookup . But when i filter the grid for a cloumn and select the radiobutton the value on the parent becomes undefined . Any idea about this .
RadGrid Version :2009.2.826.20
Trying to pass an object from a showmodaldialog from the child to the parent .
I get an alert that says undefined:
var
o =
new
Object();
o.FirstName =
document.getElementById(
"first_name"
).innerHTML;
window.returnValue =
o.FirstName;
window.close();
on the parent:
retval=window.showModalDialog (
'searchMNI.aspx?lastname='
+ temp);
alert("it
is: " + retval.FirstName);
These are from a slightly larger context, but hope you get the picture from
these snippets.
The Actual problem occurs in Chrome Browser . When i select a row and return the value it is able to send the values through the windows.returnValue of the lookup . But when i filter the grid for a cloumn and select the radiobutton the value on the parent becomes undefined . Any idea about this .