How to get and show/open menu?

  1. #1

    How to get and show/open menu?

    Hello,I have made a menu like this:
    	<ext:Menu ID="MapContextMenu" runat="server" Enabled="true" Visible="true" EnableViewState="true">
                <Items>
                    <ext:TextMenuItem Text="Selected Vehicles" />
                    <ext:MenuItem ID="PlayRouteHistoryMenuItem" Text="Play Route History" />
                    <ext:MenuItem ID="CurrentLocationMenuItem" Text="Current Location" />
                    <ext:MenuSeparator />
                    <ext:MenuItem ID="ShowAllVehiclesMenuItem" Text="Show All Vehicles" />
                </Items>
            </ext:Menu>

    And want to show it when right click event is fired on google map at cursor coordinates...I have also made the google map event and just want to show/open my menu. I have tried to get menu object but nothing is working.
    Ext.get('MapContextMenu') is giving me 'null'
    Ext.getCmp('MapContextMenu') is giving me 'undefined'

    Please help how to get and show menu?
  2. #2

    RE: How to get and show/open menu?

    Hi,

    Do you have menu inside INamingContainer (like user control or master page)?
    Try to set IDMode="Static" for Menu or use
    <%= MapContextMenu.ClientID %>.show(...)
  3. #3

    RE: How to get and show/open menu?

    Thanks Vladimir Shcheglov for replying.Now I have got the object by using this:
    var mnu = Ext.get('MapContextMenu');
    but now i am facing difficulty to how to show menu at specific x and y position? I cant show menu using show or showAt method....can you plese guide me how to call showAt() method? I am passing position parameters but it is not working......






Similar Threads

  1. [CLOSED] Show menu
    By trieu.tran in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jun 06, 2012, 7:39 AM
  2. Replies: 2
    Last Post: Feb 02, 2011, 2:25 PM
  3. Replies: 1
    Last Post: Feb 24, 2010, 4:38 PM
  4. [CLOSED] I can not show a vertical menu using images
    By flormariafr in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 31, 2010, 5:10 PM
  5. Show column hover, even if menu is diabled?
    By dbassett74 in forum 1.x Help
    Replies: 0
    Last Post: Apr 20, 2009, 12:20 PM

Posting Permissions