Css Progress, File Name..
This commit is contained in:
parent
1015146912
commit
f3cbeeb408
3 changed files with 12 additions and 2 deletions
|
@ -25,6 +25,7 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', '
|
||||||
);
|
);
|
||||||
$('#editImageModal').modal('show');
|
$('#editImageModal').modal('show');
|
||||||
$("#fileupload").fileupload({
|
$("#fileupload").fileupload({
|
||||||
|
replaceFileInput: false,
|
||||||
formData: {task: "image", token: Identity.getToken(), action: "uploadImage", id: $scope.data.id},
|
formData: {task: "image", token: Identity.getToken(), action: "uploadImage", id: $scope.data.id},
|
||||||
/* ... */
|
/* ... */
|
||||||
progressall: function (e, data) {
|
progressall: function (e, data) {
|
||||||
|
@ -36,7 +37,8 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', '
|
||||||
},
|
},
|
||||||
add: function (e, data) {
|
add: function (e, data) {
|
||||||
data.process();
|
data.process();
|
||||||
data.context = $('<button/>').text('Upload')
|
$.each($("#upload_button"), function(){$(this).detach();});
|
||||||
|
data.context = $('<button id="upload_button"/>').text('Upload')
|
||||||
.click(function () {
|
.click(function () {
|
||||||
$(this).detach();
|
$(this).detach();
|
||||||
data.submit();
|
data.submit();
|
||||||
|
|
|
@ -34,10 +34,12 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
<input id="fileupload" type="file" name="files" data-url="../server/index.php">
|
<div ng-if='image.status == "queued"'>
|
||||||
|
<input id="fileupload" type="file" name="files" size="0" data-url="../server/index.php">
|
||||||
<div id="progress">
|
<div id="progress">
|
||||||
<div class="bar" style="width: 0%;"></div>
|
<div class="bar" style="width: 0%;"></div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<!-- <form action="../server/index.php" enctype="multipart/form-data" method="post" ng-if='image.status == "queued"'>
|
<!-- <form action="../server/index.php" enctype="multipart/form-data" method="post" ng-if='image.status == "queued"'>
|
||||||
<input type="hidden" name="task" value="image" />
|
<input type="hidden" name="task" value="image" />
|
||||||
<input type="hidden" name="token" value="{{ getToken()}}" />
|
<input type="hidden" name="token" value="{{ getToken()}}" />
|
||||||
|
|
|
@ -38,4 +38,10 @@
|
||||||
.bar {
|
.bar {
|
||||||
height: 18px;
|
height: 18px;
|
||||||
background: green;
|
background: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress {
|
||||||
|
height: 18px;
|
||||||
|
border: 1px black solid;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue