onBeforeCommentShow

fires before a comment for a cell is shown

void onBeforeCommentShow(number row,number column);
rownumberthe row id
columnnumberthe column id

Example

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

See also
Back to top