Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16927 Rev 16929
Línea 20... Línea 20...
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
Línea 21... Línea 21...
21
 
21
 
Línea 22... Línea -...
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
-
 
23
 
-
 
24
 
-
 
-
 
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
-
 
23
 
-
 
24
 
Línea 25... Línea 25...
25
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
25
 
26
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
26
 
Línea 27... Línea 27...
27
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
27
 
Línea 82... Línea 82...
82
           
82
           
Línea 83... Línea -...
83
        }, 'ERROR_URL');
-
 
84
 
-
 
85
 
-
 
86
 
-
 
87
 
-
 
88
        $.validator.setDefaults({
-
 
89
            debug: true,
-
 
90
            highlight: function(element) {
-
 
91
                $(element).addClass('is-invalid');
-
 
92
            },
-
 
93
            unhighlight: function(element) {
-
 
94
                $(element).removeClass('is-invalid');
-
 
95
            },
-
 
96
            errorElement: 'span',
-
 
97
            errorClass: 'error invalid-feedback',
-
 
98
            errorPlacement: function(error, element) {
-
 
99
                if(element.parent('.form-group').length) {
-
 
100
                    error.insertAfter(element);
-
 
101
                } else if(element.parent('.toggle').length) {
-
 
102
                    error.insertAfter(element.parent().parent());
-
 
103
                } else {
-
 
Línea 104... Línea -...
104
                    error.insertAfter(element.parent());
-
 
105
                }
-
 
106
            }
-
 
107
        });
-
 
Línea 108... Línea -...
108
    
-
 
109
    
-
 
110
        $.fn.showFormErrorValidator = function(fieldname, errors) {
-
 
111
            var field = $(fieldname);
-
 
112
            if(field) {
-
 
113
                $(field).addClass('is-invalid');
-
 
114
    
-
 
115
 
-
 
116
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
-
 
117
                if(field.parent('.form-group').length) {
-
 
118
                    error.insertAfter(field);
-
 
119
                } else  if(field.parent('.toggle').length) {
83
        }, 'ERROR_URL');
120
                    error.insertAfter(field.parent().parent());
84
 
Línea 121... Línea 85...
121
                } else {
85
 
122
                    error.insertAfter(field.parent());
86