onRowOperation

fires after the user performed an operation on rows

void onRowOperation(string name,number start,number end, [string page] );
namestringthe operation name
startnumberthe start index
endnumberthe end index
pagestringthe name of the sheet

Example

$$("ssheet").attachEvent("onRowOperation", function(name, start, end, page){
    // some code here
});

Details

Available operations:

  • "hide"
  • "show"
  • "add"
  • "del"
Back to top