fires before a sheet is opened
name | string | the sheet name |
boolean | returning false will prevent the sheet opening |
$$("ssheet").attachEvent("onBeforeSheetShow", function(name){
// some code here
return true;
});
Returning false in the handler function will block the operation.