I'm wondering how I can pass the values of a combobox in my parent page to a textbox on a child popup page.
Here is the code that I have on the parent page right now to find the value of the combobox.
Here is the code that I have on the parent page right now to find the value of the combobox.
Code:
function openRadWindow(url, windowName)
{
var el = $find('<%=RadComboBoxResources.ClientID %>');
var txt = el.get_text();
var oWnd = radopen(url + "?name=" + txt, windowName);
oWnd.center();
}
Comment