85 lines
2.3 KiB
PHP
85 lines
2.3 KiB
PHP
<script type="text/javascript">
|
|
$('#task_modal').on('shown.bs.modal', function() {
|
|
__init_datetime_field('form#task_form .datepicker');
|
|
$('form#task_form .select2').select2({ dropdownParent: $(this) });
|
|
|
|
tinymce.init({
|
|
selector: 'textarea#to_do_description',
|
|
});
|
|
|
|
if ($('#media_upload').length) {
|
|
$(this).find("div#media_upload").dropzone({
|
|
url: $('#media_upload_url').val(),
|
|
paramName: 'file',
|
|
uploadMultiple: true,
|
|
autoProcessQueue: false,
|
|
addRemoveLinks: true,
|
|
params: {
|
|
'model_id': $('#model_id').val(),
|
|
'model_type': $('#model_type').val(),
|
|
'model_media_type': $('#model_media_type').val()
|
|
},
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
|
},
|
|
success: function(file, response) {
|
|
if (response.success) {
|
|
toastr.success(response.msg);
|
|
$("#task_modal").modal('hide');
|
|
} else {
|
|
toastr.error(response.msg);
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
//form validation
|
|
$("form#task_form").validate();
|
|
});
|
|
|
|
$('#task_modal').on('hide.bs.modal', function(){
|
|
tinymce.remove("textarea#to_do_description");
|
|
});
|
|
|
|
//form submit
|
|
$(document).on('submit', 'form#task_form', function(e){
|
|
e.preventDefault();
|
|
var url = $(this).attr("action");
|
|
var method = $(this).attr("method");
|
|
var data = $("form#task_form").serialize();
|
|
var ladda = Ladda.create(document.querySelector('.ladda-button'));
|
|
ladda.start();
|
|
$.ajax({
|
|
method: method,
|
|
url: url,
|
|
data: data,
|
|
dataType: "json",
|
|
success: function(result){
|
|
ladda.stop();
|
|
if(result.success == true){
|
|
var myDropzone = Dropzone.forElement("#media_upload");
|
|
|
|
if (typeof result.todo_id !== 'undefined') {
|
|
myDropzone.options.params.model_id = result.todo_id;
|
|
}
|
|
|
|
myDropzone.processQueue();
|
|
|
|
if (typeof task_table !== 'undefined') {
|
|
task_table.ajax.reload();
|
|
}
|
|
|
|
if ($('#task_modal').length) {
|
|
$('#task_modal').modal('hide');
|
|
}
|
|
|
|
if ($('#calendar').length) {
|
|
$('#calendar').fullCalendar( 'refetchEvents' );
|
|
}
|
|
} else {
|
|
toastr.error(result.msg);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script> |