SMART datagrid v.1 > Classes > EditOptions
The format which converts to string when copy the value of DATETIME field cell to clipboard.
Please refer to GridStyles.datetimeFormat about the conversion format. If do not specify, it will copy the string conversion result of JavaScript Date.
Defaults to null.
grid.setOptions({
edit: {
copyDatetimeFormat: "yyyy-MM-dd hh:mm"
}
});
grid.setEditOptions({
copyDatetimeFormat: "yyyy-MM-dd hh:mm"
});
grid.editOptions().setCopyDatetimeFormat("yyyy-MM-dd hh:mm");