Hi
My functionality is like this...
Inside RAD Grid, one column is View Details.... On Click of View Details, I have to show Popup window...
Question...
1. How to pass the parameter (Row_ID) from my RAD grid to the Javascript which opens the popup window?
2. Also currently the window is keeping the View of my last window click.... I mean.. say I click on View Details of item No#1 and closed that window. And second time I clicked on Item No# 2 then window opens but it is showing old data only.
How can I get the newly click item data on page load it self?
My functionality is like this...
Inside RAD Grid, one column is View Details.... On Click of View Details, I have to show Popup window...
Question...
1. How to pass the parameter (Row_ID) from my RAD grid to the Javascript which opens the popup window?
2. Also currently the window is keeping the View of my last window click.... I mean.. say I click on View Details of item No#1 and closed that window. And second time I clicked on Item No# 2 then window opens but it is showing old data only.
How can I get the newly click item data on page load it self?
<
script type="text/javascript">
function openRadWin() {
radopen("ViewSiteGroupSites_Popup.aspx,
"RadWindow1");
}
</script>
<
telerik:RadWindowManager ID="RadWindowManager1" runat="server" Modal="true" >
<Windows>
<telerik:RadWindow
id="RadWindow1"
runat="server"
showcontentduringload="false"
width="500px"
height="500px"
VisibleTitlebar="false"
VisibleStatusbar="false"
>
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>