var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.invalidCellValue;
var invalidCellValue : any;
The invalidCellValue event handler is a function called when a cell needs to start updating but the cell value is invalid. So if the value in a wijgrid cell can't be converted to the column target type, the invalidCellValue event will fire.
var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.invalidCellValue;
var invalidCellValue : any;
// Adds a style to the cell if the value entered is invalid $("#element").wijgrid({ invalidCellValue: function (e, args) { $(args.cell.container()).addClass("ui-state-error"); } });