How to clear the field value when copying? For example, you need to clear the Files field when you copy a record.
You may use Row_Inserting to clear the field, e.g. (assume v2025)
$row["Files"] = null;
v2024
not working
Let me try to explain:
when you click the copy button, the data by fields is transferred, but some fields should not be transferred, for example the files field.
You may try Row_Rendered server event:
if (CurrentPageID() == "add") {
if (!empty($this->Files->CurrentValue)) {
$this->Files->CurrentValue = "";
}
}
Hi bro, not working
How did you setup that Files field? Does it use Textbox control? Or, does it use File Upload? Which one?
it use File Upload
You may disable Create upload file on copy.