I'm having a problem in showing the data of selected row of radgrid in radwindow. What I have tried is using double click on client event using this script:
function RowDblClick(sender, eventArgs) {
window.radopen("ViewForum.aspx?ForumID=" + eventArgs.getDataKeyValue("ForumID"), "RadWindow1");}
<ClientSettings>
<Selecting AllowRowSelect="true"></Selecting>
<ClientEvents OnRowDblClick="RowDblClick"></ClientEvents>
<Scrolling AllowScroll="false" UseStaticHeaders="True" />
</ClientSettings>
Basically, all I want is whenever a user double click on a row of radgrid, it will open the radwindow and show the contents of the radgrid row that they have selected but I'm really having problem doing that. I can open the radwindow if I double click on the row of radgrid but the problem is the content radwindow always shows the first row of radgrid, it doesn't change even if I click on a different row. Thank you in advance.
ASPX:
JS:
OR
If you are redirecting to another page on radwindow open then take a look into the following the forum link.
How to make a rad window appear while double clicking a row in radgrid
Here we are passing the parameter as query string and assessing that in page load.