Hi everyone, I want to know if is possible add multiples files with out loss all the files that I uploaded before.
This is my code.
$col = array();
$col[“title”] = “Adjunto”;
$col[“name”] = “adjunto”;
$col[“editable”] = true;
$col[“edittype”] = “file”;
$col[“upload_dir”] = “adjuntos”;
//$col[“editrules”][“max_file_uploads”] = 3;
$col[“show”] = array(“list”=>true,”edit”=>true,”add”=>true,”view”=>true);
$col[“editrules”] = array(“ifexist”=>”rename”);
$col[“editrules”][“allowedext”] = “pdf”;
$col[“editrules”][“allowedsize”] = 900000;
$col[“editoptions”][“multiple”] = “multiple”;
$cols[] = $col;
Thaks for your help
Hello,
This is currently not supported.
There is no append option right now and You need to upload all files again.
It’s a valid requirement and I’m adding it in todos but can’t give exact ETA.