Hello,
I want to change the name of the file when I upload it. Can I create a new name for the file somewhere ?
The col code:
$col = array();
$col["title"] = "Picture1";
$col["name"] = "Picture1";
$col["align"] = "left";
$col["width"] = "12"; /
$col["editable"] = true;
$col["edittype"] = "file";
$col["upload_dir"] = $files;
$col["show"] = array("list" => false, "edit" => true, "add" => true);
$cols[] = $col;
Thank you.
2 Answers
You need to use on_insert / on_update event handler and rename file there.
For demo code, refer demos/editing/file-upload.php
Your Answer