SpreadJS Documentation
getDataValidator Method
The row index.
The column index.
The sheet area. If this parameter is not provided, it defaults to viewport.
Gets the cell data validator.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: DefaultDataValidator
value = instance.getDataValidator(row, col, sheetArea);
function getDataValidator( 
   row : number,
   col : number,
   sheetArea : SheetArea
) : DefaultDataValidator;

Parameters

row
The row index.
col
The column index.
sheetArea
The sheet area. If this parameter is not provided, it defaults to viewport.

Return Value

Returns the cell data validator for the specified cell.
Example
spread.highlightInvalidData(true);
var dv = GcSpread.Sheets.DefaultDataValidator.createListValidator("1,2,3");
dv.showInputMessage = true;
dv.inputMessage = "Value must be 1, 2 or 3.";
dv.inputTitle = "tip";
activeSheet.setDataValidator(1, 1, dv); 
var validList = activeSheet.getDataValidator(1, 1).getValidList(sheet, 1, 1);
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.