Hi Christopher,
Thanks for using Syncfusion products,
We can achieve your requirement using JQuery contextmenu event. Then, open the radial menu based on the target element. Refer to the following code example:
[script] $(document).ready(function () { document.oncontextmenu = function () { return false; }; $("#target").bind("contextmenu", function (e) { $('#defaultradialmenu').ejRadialMenu("show"); radialEle.ejRadialMenu("setPosition", 100, 10); radialEle.focus(); $("#defaultradialmenu").ejRadialMenu({ "targetElementId": "target" }); }); }); |
Refer to the following sample;
Regards,
Selvamani S.