An enhanced HTML 5 file input for Bootstrap 5.x/4.x./3.x with file preview, multiple selection, and more features.
fork from : https://github.com/kartik-v/bootstrap-fileinput.git
|
10 years ago | |
---|---|---|
css | 10 years ago | |
examples | 10 years ago | |
img | 11 years ago | |
js | 10 years ago | |
CHANGE.md | 10 years ago | |
LICENSE.md | 11 years ago | |
README.md | 10 years ago | |
bower.json | 10 years ago | |
composer.json | 11 years ago |
An enhanced HTML 5 file input for Bootstrap 3.x with file preview for images and text, multiple selection, and more. This plugin is inspired by this blog article and Jasny's File Input plugin. The plugin enhances these concepts and simplifies the widget initialization with simple HTML markup on a file input. It also offers support for multiple file preview and previewing both images and text types.
NOTE: The latest version of the plugin v2.3.0 has been released. Refer the CHANGE LOG for details.
type = file
to an advanced file picker input if you set its class = file
. All options to the input can be passed as HTML5 data
attributes.initialPreview
and initialCaption
properties in the plugin options
section for configuring this.filereset
, fileclear
, filecleared
, fileloaded
, and fileerror
.NEW: With release v2.3.0, the plugin now supports preview of flash and video files. Flash preview will require Shockwave flash to be installed and supported by the client browser. Videos will be previewed using the new HTML5
video
tag. Note that browsers have limited support for the HTML5video
element including specific video formats (e.g. mp4, webm, ogg). The size of video files are recommended to be small (controlled throughmaxFileSize
property) for not affecting your browser preview performance. You can copy a few files from theexamples
directory of this plugin repo, to test a few examples of flash and video files.
View the plugin documentation and plugin demos at Krajee JQuery plugins.
The plugin supports only file input and preview at client level. It does not actually process the upload of the files to the server.
You can use the bower
package manager to install. Run:
bower install bootstrap-fileinput
You can use the composer
package manager to install. Either run:
$ php composer.phar require kartik-v/bootstrap-fileinput "dev-master"
or add:
"kartik-v/bootstrap-fileinput": "dev-master"
to your composer.json file
You can also manually install the plugin easily to your project. Just download the source ZIP or TAR ball and extract the plugin assets (css and js folders) into your project.
Step 1: Load the following assets in your header.
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet">
<link href="path/to/css/fileinput.min.css" media="all" rel="stylesheet" type="text/css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="path/to/js/fileinput.min.js" type="text/javascript"></script>
If you noticed, you need to load the jquery.min.js
and bootstrap.min.css
in addition to the fileinput.min.css
and fileinput.min.js
.
Step 2: Initialize the plugin on your page. For example,
// initialize with defaults
$("#input-id").fileinput();
// with plugin options
$("#input-id").fileinput({'showUpload':false, 'previewFileType':'any'});
The #input-id
is the identifier for the input (e.g. type = file
) on your page, which is hidden automatically by the plugin.
Alternatively, you can directly call the plugin options by setting data attributes to your input field.
<input id="input-id" type="file" class="file" data-preview-file-type="text" >
The plugin supports these following options:
boolean whether to display the file caption. Defaults to true
.
boolean whether to display the file preview. Defaults to true
.
boolean whether to display the file remove/clear button. Defaults to true
.
boolean whether to display the file upload button. Defaults to true
. This will default to a form submit button, unless the uploadUrl is specified.
string any additional CSS class to append to the caption container.
string any additional CSS class to append to the preview container.
string any additional CSS class to append to the main plugin container.
string the template used to render the widget. The following template variables will be parsed:
{class}
: the CSS class as set in the mainClass
property.{preview}
: the content parsed by the previewTemplate
and will be displayed only if showPreview
is true
.{caption}
: the content parsed by the captionTemplate
and will be displayed only if showCaption
is true
.{remove}
: the file remove/clear button and will be displayed only if showRemove
is true
.{upload}
: the file upload button and will be displayed only if showUpload
is true
.{browse}
: the main file browse button to select your files for input.The mainTemplate
if not passed, will be automatically set based on showCaption
settings.
If showCaption
is set to true
, the mainTemplate
will default to:
{preview}
<div class="input-group {class}">
{caption}
<div class="input-group-btn">
{remove}
{upload}
{browse}
</div>
</div>
showCaption
is set to false
, the mainTemplate
will default to:
html
{preview}\n{remove}\n{upload}\n{browse}\n
string, the delimiter to be used to allow passing multiple content delimited as a string to initialPreview
. Defaults to '*$$*'
.
string | array the initial preview content to be displayed. You can pass the minimal HTML markup for displaying your image, text, or file.
If set as a string, this will display a single file in the initial preview if there is no delimiter. You can set a delimiter (as defined
in initialDelimiter
) to show multiple files in initial preview. If set as an array, it will display all files in the array as an
initial preview (useful for multiple file upload scenarios).
The following CSS classes will need to be added for displaying each file type as per the plugin style theme:
file-preview-image
file-preview-text
file-preview-other
Examples of how you can setup various files for initial preview:
// for image files
initialPreview: [
"<img src='/images/desert.jpg' class='file-preview-image' alt='Desert' title='Desert'>",
"<img src='/images/jellyfish.jpg' class='file-preview-image' alt='Jelly Fish' title='Jelly Fish'>",
],
// for text files
initialPreview: "<div class='file-preview-text' title='NOTES.txt'>" +
"This is the sample text file content upto wrapTextLength of 250 characters" +
"<span class='wrap-indicator' onclick='$(\"#show-detailed-text\").modal(\"show\")' title='NOTES.txt'>[…]</span>" +
"</div>"
// for other files
initialPreview: "<div class='file-preview-text'>" +
"<h2><i class='glyphicon glyphicon-file'></i></h2>" +
"Filename.xlsx" + "</div>"
int, the count of initial preview items that will be added to the count of files selected in preview. This is applicable when displaying
the right caption, when overwriteInitial
is set to false
.
string the initial preview caption text to be displayed. If you do not set a value here and initialPreview
is set to
true
this will default to "{preview-file-count} files selected"
, where {preview-file-count}
is the count of the
files passed in initialPreview
.
boolean whether you wish to overwrite the initial preview content and caption setup. This defaults to true
, whereby, any initialPreview
content set
will be overwritten, when new file is uploaded or when files are cleared. Setting it to false
will help displaying a saved image or file from database always -
useful especially when using the multiple
file upload feature.
string the template used to render the caption. The following template variables will be parsed:
{class}
: the CSS class as set in the captionClass
property.The captionTemplate
if not set will default to:
<div tabindex="-1" class="form-control file-caption {class}">
<span class="glyphicon glyphicon-file"></span> <span class="file-caption-name"></span>
</div>
string the template used to render the preview. The following template variables will be parsed:
{class}
: the CSS class as set in the previewClass
property.The previewTemplate
if not set will default to:
<div class="file-preview {class}">
<div class="close fileinput-remove text-right">×</div>
<div class="file-preview-thumbnails"></div>
<div class="clearfix"></div>
<div class="file-preview-status text-center text-success"></div>
</div>
string the generic preview template markup used within the preview container. Defaults to IMAGE_TEMPLATE
as shown below.
The following variables will be parsed:
{content}
: the file preview content{previewId}
: the previewed file container identifier<div class="file-preview-frame" id="{previewId}">
{content}
</div>
string the template markup for previewing image files within the preview container. Defaults to IMAGE_TEMPLATE
as shown below.
The following variables will be parsed:
{content}
: the file preview content{previewId}
: the previewed file container identifier<div class="file-preview-frame" id="{previewId}">
{content}
</div>
string the template markup for previewing text files within the preview container. Defaults to TEXT_TEMPLATE
as shown below.
The following variables will be parsed:
{strText}
: the file text content{caption}
: the file name to be displayed on hover{previewId}
: the previewed file container identifier<div class="file-preview-frame" id="{previewId}">
<div class="file-preview-text" title="{caption}">
{strText}
</div>
</div>
string the template markup for previewing flash files within the preview container. Defaults to FLASH_TEMPLATE
as shown below.
The following variables will be parsed:
{previewId}
: the previewed file container identifier{caption}
: the file name to be displayed on hover{media}
: the flash content to be previewed'<div class="file-preview-frame" id="{previewId}" title="{caption}">
<object type="application/x-shockwave-flash" data="{media}" width="320" height="240">
<param name="movie" value="{media}" />
<param name="quality" value="high" />
</object>
</div>
string the template markup for previewing video files within the preview container. Defaults to VIDEO_TEMPLATE
as shown below.
The following variables will be parsed:
{previewId}
: the previewed file container identifier{caption}
: the file name to be displayed on hover{media}
: the flash content to be previewed{type}
: the type of video file to be previewed'<div class="file-preview-frame" id="{previewId}" title="{caption}">
<source src="{media}" type="{type}">
<small>The video format of "{caption}" is not supported by your browser for preview (must be one mp4, webm, 3gp, ogg).</small>
</div>
string the template markup for previewing all other files within the preview container. Defaults to OTHER_TEMPLATE
as shown below.
The following variables will be parsed:
{caption}
: the file name to be displayed{previewId}
: the previewed file container identifier<div class="file-preview-frame" id="{previewId}">
<div class="file-preview-other">
<h2><i class="glyphicon glyphicon-file"></i></h2>
{caption}
</div>
</div>
string the label to display for the file picker/browse button. Defaults to Browse …
.
string the icon to display before the label for the file picker/browse button. Defaults to <i class="glyphicon glyphicon-folder-open"></i>
.
string the CSS class for the file picker/browse button. Defaults to btn btn-primary
.
string the label to display for the file remove button. Defaults to Remove
.
string the icon to display before the label for the file picker/remove button. Defaults to <i class="glyphicon glyphicon-ban-circle"></i>
.
string the CSS class for the file remove button. Defaults to btn btn-default
.
string the label to display for the file upload button. Defaults to Upload
.
string the icon to display before the label for the file upload button. Defaults to <i class="glyphicon glyphicon-upload"></i>
.
string the CSS class for the file upload button. Defaults to btn btn-default
.
string the URL for the upload processing action (typically for ajax based processing). Defaults to null
. If this is not set or null
, then the upload button action will default to form submission.
float the maximum file size for upload in KB. If set to 0
, it means size allowed is unlimited. Defaults to 0
.
float the maximum number of files allowed for each multiple upload. If set to 0
, it means number of files allowed is unlimited. Defaults to 0
.
string the message to be displayed when the file size exceeds maximum size. Defaults to:
File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>. Please retry your upload!
where:
{name}
: will be replaced by the file name being uploaded{size}
: will be replaced by the uploaded file size{maxSize}
: will be replaced by the maxFileSize
parameter.string the message to be displayed when the file count exceeds maximum count as set in maxFileCount
. Defaults to:
Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>. Please retry your upload!
where:
{n}
: will be replaced by number of files selected for upload{m}
: will be replaced by the allowed maximum files as set in maxFileCount
string the exception message to be displayed when the file selected is not found by the FileReader. Defaults to:
File "{name}" not found!
where:
{name}
: will be replaced by the file name being uploadedstring the exception message to be displayed when the file selected is not readable by the FileReader API. Defaults to:
File "{name}" is not readable.
where:
{name}
: will be replaced by the file name being uploadedstring the exception message to be displayed when the file preview upload is aborted. Defaults to:
File preview aborted for "{name}".
where:
{name}
: will be replaced by the file name being uploadedstring the exception message to be displayed for any other error when previewing the file. Defaults to:
An error occurred while reading the file "{name}".
where:
{name}
: will be replaced by the file name being uploadedstring the exception message to be displayed within the caption container (instead of msgFilesSelected
),
when a validation error is encountered. Defaults to:
<span class="text-danger"><i class="glyphicon glyphicon-exclamation-sign"></i> File Upload Error</span>
string the css class for the error message to be displayed in the preview window when the file size exceeds maxSize
. Defaults to file-error-message
.
string the message displayed when the files are getting read and loaded for preview. Defaults to
The following special variables will be replaced:
- `{index}`: the sequence number of the current file being loaded.
- `{files}`: the total number of files selected for upload.
#### msgProgress
_string_ the progress message displayed as each file is loaded for preview. Defaults to:
```Loading file {index} of {files} - {name} - {percent}% completed.```
The following variables will be replaced:
- `{index}`: the sequence number of the current file being loaded.
- `{files}`: the total number of files selected for upload.
- `{percent}`: the percentage of file read and loaded.
- `{name}`: the name of the current file being loaded.
#### msgSelected
_string_ the progress message displayed in caption window when multiple (more than one) files are selected. Defaults to `{n} files selected`. The following variables will be replaced:
- `{n}`: the number of files selected.
#### previewFileType
_string_ the type of files that are to be displayed in the preview window. Defaults to `image`. Can be one of the following:
- `image`: Only `image` type files will be shown in preview.
- `text`: Only `text` type files will be shown in preview.
- `any`: Both `image` and `text` files content will be shown in preview.
Files other than `image` or `text` will be displayed as a thumbnail with the filename in the preview window.
#### wrapTextLength
_integer_ the number of characters after which the content will be stripped/wrapped for text preview. Defaults to `250`.
#### wrapIndicator
_string_ the type of files that are to be displayed in the preview window. Defaults to ` <span class="wrap-indicator" title="{title}">[…]</span>`. The following variables will be replaced:
- `{title}`: the content of the entire text file that will be displayed as a span title element.
#### elCaptionContainer
_string_ the identifier for the container element containing the caption (e.g. `'#id'`). If not set, will default to the container with CSS class `file-caption` inside the main plugin container.
#### elCaptionText
_string_ the identifier for the container element containing the caption text (e.g. `'#id'`). If not set, will default to the container with CSS class `file-caption-name` inside the main plugin container.
#### elPreviewContainer
_string_ the identifier for the container element containing the preview (e.g. `'#id'`). If not set, will default to the container with CSS class `file-preview` inside the main plugin container.
#### elPreviewImage
_string_ the identifier for the element containing the preview image thumbnails (e.g. `'#id'`). If not set, will default to the container with CSS class `file-preview-thumbnails` inside the main plugin container.
#### elPreviewStatus
_string_ the identifier for the element containing the preview progress status (e.g. `'#id'`). If not set, will default to the container with CSS class `file-preview-status` inside the main plugin container.
### Plugin Events
The plugin supports these events:
#### fileclear
This event is triggered when the file input the remove button is pressed for clearing the file preview.
**Example:**
```js
$('#input-id').on('fileclear', function(event) {
console.log("fileclear");
});
This event is triggered after the files in the preview are cleared.
Example:
$('#input-id').on('filecleared', function(event) {
console.log("filecleared");
});
This event is triggered when a client validation error is encountered for an uploaded file. Additional parameters available are:
file
: the FileReader instancepreviewId
: the identifier for the preview file container.index
: the zero-based sequential index of the loaded file in the preview listExample:
$('#input-id').on('fileerror', function(event, file, previewId, index) {
console.log("fileerror");
});
This event is triggered after a file is loaded in the preview. Additional parameters available are:
file
: the FileReader instancepreviewId
: the identifier for the preview file container.index
: the zero-based sequential index of the loaded file in the preview listExample:
$('#input-id').on('fileloaded', function(event, file, previewId, index) {
console.log("fileloaded");
});
This event is triggered when the file input is reset to initial value.
Example:
$('#input-id').on('filereset', function(event) {
console.log("filereset");
});
The plugin supports these methods:
Disable the file input.
$('#input-id').fileinput('disable');
Enable the file input.
$('#input-id').fileinput('enable');
Reset the file input.
$('#input-id').fileinput('reset');
Clear the file input.
$('#input-id').fileinput('clear');
Refreshes the file input plugin based on options provided. You can supply an array of plugin options as a parameter.
// example 1 (disable at runtime)
$('#input-id').attr('disabled', 'disabled');
$('#input-id').fileinput('refresh');
// example 2 (modify plugin options at runtime)
$('#input-id').fileinput('refresh', {browseLabel: 'Select...', removeLabel: 'Delete'});
bootstrap-fileinput is released under the BSD 3-Clause License. See the bundled LICENSE.md
for details.