« All helpers
Provides a multi-file selector based on the file browser from filemanager/util/browser.
Usage:
$this->run ('filemanager/util/multi-file');
Or anywhere in your view:
{! filemanager/util/multi-file !}
preview area:
<p> {"Attach files"}: <div id="preview"></div> <input type="hidden" name="files" id="files" /> </p>
$.multi_file()
$.multi_image ({ field: '#files', preview: '#preview' });
This helper stores the list of files in the following format in the input field, so you can easily split them into an array:
/files/file1.txt|/files/file2.doc|/files/file3.txt
Options:
field
preview
Provides a multi-file selector based on the file browser from filemanager/util/browser.
Usage:
1. Load this handler either in your handler:
Or anywhere in your view:
2. Create the HTML elements for the input field and the
preview area:
3. Use the
$.multi_file()
function to initialize the plugin:This helper stores the list of files in the following format in the input field, so you can easily split them into an array:
Options:
field
- The selector of an input field to update with the list.preview
- The selector of an element to use to contain the list preview.