I am currently using the context menu like this. It works on all img tags existing at page load. However, If when i try to create an img client side it does not have the context menu. I know you can use show method on the click event however I want it on the left click. Is it possible, and if so how?
<telerik:RadContextMenu runat="server" ID="conTest" OnClientShowing="ClientShowing" OnClientItemClicked="ClientClicked"> <Targets> <telerik:ContextMenuTagNameTarget TagName="img" /> </Targets> <Items> <telerik:RadMenuItem Text="Edit"> </telerik:RadMenuItem> <telerik:RadMenuItem Text="Delete"> </telerik:RadMenuItem> <telerik:RadMenuItem Text="View Full"> </telerik:RadMenuItem> </Items></telerik:RadContextMenu>