onRowOperation

fires after the user performed an operation on rows

void onRowOperation(string name,number start,number end);
namestringthe operation name
startnumberthe start index
endnumberthe end index

Example

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

Details

Available operations:

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