onBeforeCommentShow

fires before a comment for a cell is shown

boolean onBeforeCommentShow(number row,number column);
rownumberthe row id
columnnumberthe column id
booleanreturning false will prevent the comment showing

Example

$$("ssheet").attachEvent("onBeforeCommentShow",function(row,column){
    // some code here
    return true;
});

See also
Back to top