Skip to main content
Participant
March 3, 2023
Question

Order in which menu is added

  • March 3, 2023
  • 1 reply
  • 357 views

Following is the manifest file:

<ExtensionManifest ExtensionBundleId="com.oracle.SmartViewInDesign" ExtensionBundleVersion="1.0.75" Version="7.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionList>
<Extension Id="Home" Version="1.0.5" />
<Extension Id="Login" Version="1.0.1" />
<Extension Id="About" Version="1.0.1" />
</ExtensionList>

 

And following is the menu placement:

<Menu Placement="'Main:&amp;Test',600.0,'KBSCE Main menu'">Home</Menu>

<Menu Placement="'Main:&amp;Test',600.0,'KBSCE Main menu'">Login</Menu>

<Menu Placement="'Main:&amp;Test',600.0,'KBSCE Main menu'">About</Menu>

 

 

So the order in which it gets displayed is:About, Home, Login. Means it's alphabetically sorted. I want About menu to be at the end i.e. following order: Home, Login, About.

 

How should I do it? I don't want to do it using script since once I close the extension the About event handler won't work and I want About to launch a modal dialog always irrespective of Home is on or not.

 

This topic is closed to new replies. Start a new post to keep the conversation going.

1 reply

Community Expert
March 4, 2023

I am not sure but did you try changing the value 600. I mean all 3 having different values.

-Manan

-Manan