$(function() { $('#file_upload_30_1').uploadifive({ 'auto': true, 'fileTypeDesc': 'Pliki', 'fileTypeExts': '*.png;*.jpg;*.jpeg', 'buttonText': 'Dodaj załącznik', 'uploadLimit': 100, 'height': 25, 'width': 113, 'fileType': 'image/png,image/jpg,image/jpeg,.pdf,.doc,.docx,.txt,.xls,.xlsx,.ppt,.pptx,.rtf', 'checkScript': '/assets/php/ajax/checkUploadedFile.php', 'formData': { 'queId': '30_1' }, 'queueID': 'queue_30_1', 'uploadScript': '/assets/php/ajax/uploadFile.php?uploadId=1&source=RnBPRHMxRjRiZnAyQ3dvRzdDWitGSitJUEtnUzMzaTF2eDhoQ2dDR1dwWm5NYXlURThRcC84V2tzWHZtRW1Bdw&sourceType=30&sourceData=1', 'onProgress' : function(file, e) { if (e.lengthComputable) { var percent = Math.round((e.loaded / e.total) * 100); } file.queueItem.find('.fileinfo').html(' - ' + percent + '%'); file.queueItem.find('.progress-bar').css('width', percent + '%'); }, 'onUploadComplete': function(file, data) { data = JSON.parse(data); if(data.status) toastr['success'](data.alert.success); else toastr['error'](data.alert.error); //$('#queue_files_count_').val(parseInt($('#queue_files_count_').val()) + 1); }, 'onCancel': function(file) { //$('#queue_files_count_').val(parseInt($('#queue_files_count_').val()) - 1); }, }); $("#uploadifive-file_upload_30_1").addClass('btn'); $('#delete_document_input_30_1').click(function() { var id = $(this).attr('id').split('_'); id = id[4]; if(($(this).next().find('.check1').val().length > 0) || ($(this).next().find('.check2').val().length > 0) || ($(this).next().find('.check3').val().length > 0) || ($(this).next().find('.check4').val().length > 0) || ($(this).next().find('.check5').val().length > 0) || ($(this).next().find('.check6').val().length > 0) || ($(this).next().find('.check7').val().length > 0)) { $('#invoice_id').val(id); $('div.delete-doc').addClass('active'); } else { removeInvoice(id); } }); });