Hi,
I am trying to open a context menu when right click any column from a RAD GridView. I couldn't give The RAD GridView Column as a target for the context menu.
I think it is not permited also to set the ContextMenuTagNameTarget with an asp or RAD tag name, i think it is ok only with HTML Tags, please validate.
contextMenu.Show();
but I recieve a javascript error that the contextMenu object doesn't support that function, also I have download several examples with the ASP Menu not the Prometheus,and they use the Show() function, and the ShowAt function.
Please advice.
Kind regards.
I am trying to open a context menu when right click any column from a RAD GridView. I couldn't give The RAD GridView Column as a target for the context menu.
I think it is not permited also to set the ContextMenuTagNameTarget with an asp or RAD tag name, i think it is ok only with HTML Tags, please validate.
<telerik:ContextMenuTagNameTarget TagName="Columns"
/>
<telerik:ContextMenuTagNameTarget TagName="telerik
:GridBoundColumn" />
I have tried to use the client event OnColumnContextMenu and handle the function ColumnContextMenu to make it show the context menu
<ClientEvents OnColumnContextMenu="ColumnContextMenu" />
var
contextMenu = document.getElementById("<%= DWSRadContextMenu.ClientID %>");
contextMenu.Show();
but I recieve a javascript error that the contextMenu object doesn't support that function, also I have download several examples with the ASP Menu not the Prometheus,and they use the Show() function, and the ShowAt function.
Please advice.
Kind regards.