Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
Actually I have not been sure with my answer from first place so I have forwarded to dev.team for consult. Sorry that I did not get back to you sooner. The confirmation from dev.team is that FileUploader is for single file upload and they do have plan for MultipleFileUpload class.
Yes, since the latest version of Dashboard which is 4.5.0, you can enable Dashboard's FileUploader multiple upload using multiple
property when using it:
class InputsBoard extends Dashboard
{
protected function content()
{
return [
Row::create([
[
FileUploaderDemo::create()
->multiple(true);
],
],
];
}
}
or when initing:
class FileUploaderDemo extends \koolreport\dashboard\inputs\FileUploader
{
function onInit()
{
$this->multiple(true);
}
}
To update on this Dashboard's FileUploader multiple upload, we missed the FileUploader views in Amazing and Appstack theme, which include multiple mode. Thus, pls update to the latest KoolReport Pro version 6.3.1 for the feature to work. We are sorry for any inconvenience.
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo