fires before a new condition for cells has been set
| row | number | the ID of the row |
| column | number | the ID of the column |
| oldCondition | array | the old condition for cells |
| newCondition | array | the new condition for cells |
| page | string | the name of the sheet |
| boolean | returning false will prevent the new condition setting |
$$("spsheet1").attachEvent("onBeforeConditionSet",function(row,col,oCond,nCond,page){
// handler code here
return true;
});
The event is not called for pasting copied data. Use onBeforePaste instead.