"Example input buttom"
Bootstrap 3.3.0 Snippet by chevan468

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class"row">
<br>
<br>
<br>
<br>
</div>
<div class="container center">
<input id="file-4" name="file-4[]" type="file" multiple>
<hr>
<button class="btn btn-default btn-disable" type="button">Disable</button>
<button class="btn btn-danger btn-destroy" type="button">Destroy</button>
<button class="btn btn-success btn-recreate" type="button">Recreate</button>
<button class="btn btn-info btn-refresh" type="button">Refresh</button>
</div>
<script>
$(document).on('ready', function() {
// the file input
var $el = $('#file-4'), initPlugin = function() {
$el.fileinput({
uploadUrl: '/file-upload-single/1',
uploadExtraData: {kvId: '10'},
dropZoneEnabled: false,
}).off('filepreupload').on('filepreupload', function() {
alert("Initial pre-upload message!");
});
};
// initialize plugin
initPlugin();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
center {
align-content: center;
align-items: center;
}
down {
padding-bottom: 30px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: