SMART datagrid v.1 > Classes > EditOptions
It specifies one or more strings which can be ignored when convert the value of clipboard to the value of NUMBER field by pasting.
Defaults to null.
grid.setOptions({
edit: {
pasteNumberChars: [",", "Won", "$"],
pasteBooleanFormat: "No,Male,0:Yes,Female,1:x,X"
}
});
grid.setEditOptions({
pasteNumberChars: [",", "Won", "$"],
pasteBooleanFormat: "No,Male,0:Yes,Female,1:x,X"
});
grid.editOptions().setNumberChars([",", "Won", "$"]);