Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15337 | Rev 15831 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15337 Rev 15423
Línea 38... Línea 38...
38
                    error.insertAfter(element.parent());
38
                    error.insertAfter(element.parent());
39
                }
39
                }
40
            }
40
            }
41
        });
41
        });
Línea -... Línea 42...
-
 
42
        
-
 
43
        $.fn.handleDisable = function() {
-
 
44
            const disabledValue = $('button[type="submit"]').prop('disabled')
-
 
45
            $('button[type="submit"]').prop('disabled', !disabledValue);
Línea 42... Línea 46...
42
        
46
        }
43
        
47
        
44
        $.fn.showFormErrorValidator = function(fieldname, errors) {
48
        $.fn.showFormErrorValidator = function(fieldname, errors) {
45
            var element = $(elementname);
49
            var element = $(elementname);
Línea 77... Línea 81...
77
            var formdata = false;
81
            var formdata = false;
78
            if (window.FormData){
82
            if (window.FormData){
79
                formdata = new FormData(form); //form[0]);
83
                formdata = new FormData(form); //form[0]);
80
            }
84
            }
Línea 81... Línea 85...
81
 
85
 
Línea 82... Línea 86...
82
            $('input[type="submit"]').prop('disabled', true);
86
            $.fn.handleDisable()
83
 
87
 
84
            $.ajax({
88
            $.ajax({
85
                'dataType'  : 'json',
89
                'dataType'  : 'json',
Línea 89... Línea 93...
89
                'data'      :  formdata,
93
                'data'      :  formdata,
90
                'processData': false,
94
                'processData': false,
91
                'contentType': false,
95
                'contentType': false,
92
            }).done(function(response) {
96
            }).done(function(response) {
93
                if(response['success']) {
97
                if(response['success']) {
94
                    $.fn.showSuccess(response['data']);
98
                    $.fn.showSuccess(response['data'], $.fn.handleDisable);
Línea 95... Línea 99...
95
                       
99
                       
96
                } else {
100
                } else {
97
                    validator.resetForm();
101
                    validator.resetForm();
98
                    if(jQuery.type(response['data']) == 'string') {
102
                    if(jQuery.type(response['data']) == 'string') {