Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16891 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 86... Línea 86...
86
                    error.insertAfter(element);
86
                    error.insertAfter(element);
87
                }
87
                }
88
            }
88
            }
89
        });
89
        });
Línea 90... Línea -...
90
 
-
 
91
        $.validator.setDefaults({
-
 
92
            debug: true,
-
 
93
            highlight: function(element) {
-
 
94
                $(element).addClass('form-group-has-error');
-
 
95
            },
-
 
96
            unhighlight: function(element) {
-
 
97
                $(element).removeClass('form-group-has-error');
-
 
98
            },
-
 
99
            errorElement: 'div',
-
 
100
            errorClass: 'form-group-invalid-feedback',
-
 
101
            errorPlacement: function(error, element) {
-
 
102
                if(element.parent('.form-group').length) {
-
 
103
                    error.insertAfter(element.parent());
-
 
104
                } else if(element.parent('.toggle').length) {
-
 
105
                    error.insertAfter(element.parent().parent());
-
 
106
                } else {
-
 
107
                    error.insertAfter(element);
-
 
108
                }
-
 
109
            }
-
 
110
        });
-
 
111
    
-
 
112
        $.fn.showFormErrorValidator = function(fieldname, errors) {
-
 
113
            var field = $(fieldname);
-
 
114
            if(field) {
-
 
115
                $(field).addClass('form-group-has-error');
-
 
Línea 116... Línea -...
116
    
-
 
117
 
-
 
118
                var error = $('<div id="' + fieldname +'-error" class="form-group-invalid-feedback">' + errors + '</div>');
-
 
119
                if(field.parent('.form-group').length) {
-
 
120
                    error.insertAfter(field.parent());
-
 
121
                } else  if(field.parent('.toggle').length) {
-
 
122
                    error.insertAfter(field.parent().parent());
-
 
123
                } else {
-
 
124
                    error.insertAfter(field);
-
 
125
                }
-
 
Línea 126... Línea 90...
126
            }
90
 
127
        };
91
 
128
 
92