Context Menu using addContextZone and splitAt

The context menu using addContextZone in the header of a grid is not showing up on the left side when using frozen columns. It shows up fine on the right side of the grid in the column header.

An example of show I am getting the menu to show up in the column header using addContextZone:

    objBrowseList.hdr.id = "some_id";
    menu.addContextZone("some_id");

any idea as to how I can get it to show up on the left side of the split in the column header?

Thanks in advance…

To set id for the left part of the grid you should do the following:

objBrowseList._fake.hdr.id = “some_id”;

Thanks! It works great!