So I have a grid with a template column, and that column has alinkbutton in it:
I'd like to be able to access the "btnTmpEdit" linkbutton, so I can add an "onmouseover" and "onmouseout" event to trigger a popup when the user hovers over it. I know how to add the client-side events, I just need to know how I can access this button in codebehind? is this possible? Thanks in advance.
<
telerik:RadGrid
ID
=
"rgCSVTest"
runat
=
"server"
AllowPaging
=
"true"
Visible
=
"false"
>
<
MasterTableView
>
<
Columns
>
<
telerik:GridTemplateColumn
HeaderText
=
"Edit"
UniqueName
=
"tmpEdit"
>
<
ItemTemplate
>
<
asp:LinkButton
ID
=
"btnTmpEdit"
runat
=
"server"
CommandName
=
"Edit"
Text
=
"Edit"
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>