onBeforeSheetMenu

fires before the bottom bar menu is shown

boolean onBeforeSheetMenu(string name);
namestringthe name of the sheet
booleanreturning false will prevent the bottom bar menu showing

Example

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

Details

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

Back to top