Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Catch open event
posted

Hello!

Is there any way to catch Open event in Radial Menu? I know it is possible to capture it for a certain item, but I need to capture it when the whole Radial menu is opened.

Thanks in advance!

  • 11095
    Verified Answer
    Offline posted

    Hello Jose,

    Thank you for contacting Infragistics Developer Support!

    Just handle the opened event outside the items array.

     1 $("#radialMenu").igRadialMenu({
     2 	width: "300px",
     3 	height: "300px",
     4 	items:
     5 	[
     6 		//some items
     7 	],
     8 	opened: function (evt, ui) {
     9 		//handle the event
    10 	}
    11 });

    Please let me know if you need further assistance on this.