onStyleChange

fires after applying a new style for a cell

void onStyleChange(number row,number column,object style,object oldStyle, [string page] );
rownumberthe ID of the row
columnnumberthe ID of the column
styleobjectthe new style for a cell
oldStyleobjectthe old style of a cell
pagestringthe name of the sheet

Example

$$("spsheet1").attachEvent("onStyleChange", function(row,column,style,oldStyle,page){
    // some code here
});

See also
Back to top