onBeforeSheetMenu

fires before the bottom bar menu is shown

void onBeforeSheetMenu(string name);
namestringthe name of the sheet

Example

$$("ssheet").attachEvent("onBeforeSheetMenu", function(name){
    // some code here
});

Details

If you return false, the menu will not show up.

Back to top