onAfterConditionSet

fires after a new condition for cells was set

void onAfterConditionSet(number row,number column,array oldCondition,array newCondition, [string page] );
rownumberthe ID of the row
columnnumberthe ID of the column
oldConditionarraythe old condition for cells
newConditionarraythe new condition for cells
pagestringthe name of the sheet

Example

$$("spsheet1").attachEvent("onAfterConditionSet",function(row,col,oCond,nCond,page){
    // handler code here
});

See also
Back to top