hi,
i am a newbie to telerik and ajax, i am trying to show a popup image on move hover for an grid item.
i have found a similar article which says i an use that a itemtemplate and show a popup.
the problem i am facing here is to include the assembly with the tag name "cc1" which has the "HoverMenuExtender" method, i think this is from the ajax control library.
also let me know if it is possible to catch the click event of the button "btnCopy" on the server side ( and) is still need to be able to tell on which cell the click event was raised.
i am stuck with this problem for more than 2 days, so, please help me out.
thank you.
i am a newbie to telerik and ajax, i am trying to show a popup image on move hover for an grid item.
i have found a similar article which says i an use that a itemtemplate and show a popup.
| <telerik:GridTemplateColumn UniqueName="TemplateCol" HeaderText="TemplateCol"> |
| <ItemTemplate> |
| <asp:Label id="lblName" runat="server" Text='<%#Eval("ProductName") %>' ></asp:Label> |
| <asp:Panel ID="popupMenu" runat="server" style="display:none" BackColor="skyblue" > |
| <asp:Button ID="btnCopy" runat="server"></asp:Button> |
| </asp:Panel> |
| <cc1:HoverMenuExtender ID="HoverMenuExtender1" TargetControlID="lblName" runat="server" |
| PopupControlID="popupMenu" PopupPosition="right" PopDelay="50"> |
| </cc1:HoverMenuExtender> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
the problem i am facing here is to include the assembly with the tag name "cc1" which has the "HoverMenuExtender" method, i think this is from the ajax control library.
also let me know if it is possible to catch the click event of the button "btnCopy" on the server side ( and) is still need to be able to tell on which cell the click event was raised.
i am stuck with this problem for more than 2 days, so, please help me out.
thank you.