SMART datagrid v.1 > Classes > EditOptions
The format which converts to string when copy the value of BOOLEAN field cell to clipboard.
It is specified as "false:true:undefined" format. If do not specify, it will copy Boolean conversion result of JavaScript.
Defaults to null.
grid.setOptions({
edit: {
copyBooleanFormat: "No:Yes:",
copyDatetimeFormat: "yyyy-MM-dd hh:mm"
}
});
grid.setEditOptions({
copyBooleanFormat: "No:Yes:",
copyDatetimeFormat: "yyyy-MM-dd hh:mm"
});
grid.copyOptions().setBooleanFormat("No:Yes:");