onAfterConditionSet

fires after a new condition for cells was set

void onAfterConditionSet(number row,number column,array oldCondition,array newCondition);
rownumberthe ID of the row
columnnumberthe ID of the column
oldConditionarraythe old condition for cells
newConditionarraythe new condition for cells

Example

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

See also
Back to top