[CLOSED] Remove sort Asc/Desc from grid header context menu

  1. #1

    [CLOSED] Remove sort Asc/Desc from grid header context menu

    Is it possible to remove sort Asc/Desc options from grid header context menu? I still want the grid to sort when you click on the column header, but I dont want to see the options in the context menu.
  2. #2

    RE: [CLOSED] Remove sort Asc/Desc from grid header context menu

    Hi,

    Use the following js function on grid render listener
    <Render Fn="hideMenuItems" />
    var hideMenuItems = function(grid){
                var ms = grid.view.hmenu.items;
                ms.get("asc").hide(true);
                ms.get("desc").hide(true);
            }

Similar Threads

  1. Context menu on tree grid
    By Mr.Techno in forum 1.x Help
    Replies: 20
    Last Post: Nov 17, 2011, 10:18 AM
  2. Replies: 4
    Last Post: Jul 25, 2011, 4:57 PM
  3. [CLOSED] gridpanel header menu column checkbox remove
    By majestic in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Oct 15, 2009, 11:28 AM
  4. [CLOSED] Manually Set Grid Header Sort Icon
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Mar 09, 2009, 12:22 PM
  5. Remove Sort Header
    By Kipetcoff in forum 1.x Help
    Replies: 2
    Last Post: Feb 15, 2009, 7:44 AM

Posting Permissions