Hi all :)
I have a grid which contains general information, and I want to open a new radwindow with more details about selected row when I press on linkbutton
here is my grid:
and here is my window:
and JavaScript function:
I tried many ways posted here, but no one solve my problem
any help please!
I have a grid which contains general information, and I want to open a new radwindow with more details about selected row when I press on linkbutton
here is my grid:
<
asp:LinkButton
runat
=
"server"
ID
=
"Label2"
Text='<%# Eval("News_Title")%>' Font-Bold="true"
Font-Names="Tahoma" Font-Size="Small" OnClientClick="javascript:RowDblClick();">
</
asp:LinkButton
>
and here is my window:
<
telerik:RadWindowManager
ID
=
"RadWindowManager2"
runat
=
"server"
Skin
=
"Black"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"GetContactUsWindow"
runat
=
"server"
Title
=
"تعليقات"
Modal
=
"true"
ReloadOnShow
=
"true"
Width
=
"750px"
Height
=
"750px"
Animation
=
"Fade"
AutoSize
=
"true"
>
</
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
and JavaScript function:
function RowDblClick(sender, eventArgs) {
$find('<%= GetContactUsWindow.ClientID%>').show(); return
false;
}
I tried many ways posted here, but no one solve my problem
any help please!