SMART datagrid v.1 > Classes > DisplayOptions
The string which will be displayed instead when the value of ValueType.NUMBER field is NaN.
If set DataColumn.nanText, this property will be ignored.
Defaults to null.
grid.setOptions({
display: {
nanText : '-'
}
});
grid.setDisplayOptions({
nanText: '-'
});
grid.displayOptions().setNanText('-');