SpreadJS Documentation
formula Field
The expected formula.
Syntax
var instance = new GcSpread.Sheets.DateExCondition(type, style);
var value; // Type: string
value = instance.formula;
var formula : string;
Example
This example creates a date condition.
var nCondition = new GcSpread.Sheets.DateExCondition();
nCondition.formula = "$C$1";
var validator = new GcSpread.Sheets.DefaultDataValidator(nCondition)
activeSheet.getCell(0, 0, GcSpread.Sheets.SheetArea.viewport).dataValidator(validator);
spread.highlightInvalidData(true);
activeSheet.setValue(0, 0, new Date(2012, 12, 12));
activeSheet.setValue(0, 2, new Date(2012, 11, 31));
See Also

Reference

DateExCondition type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.