i just downloaded the 2009 v3 , the right click context menu is not working in firefox,
apparently the e.srcElement.id is not available
Error: e.srcElement is undefined
Source File: http://appserver:81/ASPxPivotGridDemos_v9_3/ASPxPivotGridDemos/DXR.axd?r=2_14,2_13,2_8,1_46,1_29,2_11,1_35,1_44,1_47,7_2,1_37,1_36,1_27
Line: 11197
showHeaderMenu: function(e, fieldID) {
this.headerMenuFieldID = fieldID;
this.headerMenuElementID = e.srcElement.id;
var menu = aspxGetControlCollection().Get(this.name + "_HM");
if(menu == null) return;
this.SetMenuItemVisibilityState(menu, "Hide", !(this.headerMenuElementID.indexOf("Area") > 0));
this.SetMenuItemVisibilityState(menu, "HideList", this.IsCustomizationFieldsVisible());
this.SetMenuItemVisibilityState(menu, "ShowList", !this.IsCustomizationFieldsVisible());
this.SetMenuItemVisibilityState(menu, "ShowPrefilter", !this.IsPrefilterVisible());
var isVisible = this.isOLAPSortModeNoneItemsVisible();
this.SetMenuItemState(menu, "SortAZ", isVisible, true, this.isOLAPSortModeNoneSortAZChecked());
this.SetMenuItemState(menu, "SortZA", isVisible, true, this.isOLAPSortModeNoneSortZAChecked());
this.SetMenuItemState(menu, "ClearSort", isVisible, this.isOLAPSortModeNoneClearSortEnabled(), false);
this.showMenu(e, menu);
},