Hi,
I want to be able to open the RadGrid headercontextmenu on left click instead of right. Currently when I left click, it just changes the sorting, but the sorting can already be accomplished in the context menu. This is the same issue as this thread: https://www.telerik.com/forums/how-to-show-the-radgrid-context-menu-on-left-click-instead-of-right-click but that was a while ago and currently when I implement, the context menu flashes but then disappears. Is there anyway to achieve the appropriate functionality? Here is my code that implements it:
<
script
type
=
"text/javascript"
>
function OnColumnClick(sender, args){
args.get_gridColumn().showHeaderMenu(args.domEvent);
}
</
script
>
…
In the RadGrid …
<
ClientEvents
OnColumnClick
=
"OnColumnClick"
/>