SpreadJS Documentation
showInputMessage Field
Indicates whether to display the input title and input message.
Syntax
var instance = new GcSpread.Sheets.DefaultDataValidator(condition);
var value; // Type: boolean
value = instance.showInputMessage;
var showInputMessage : boolean;
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

DefaultDataValidator type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.