Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16912 Rev 16929
Línea 15... Línea 15...
15
$allowDownload  = $acl->isAllowed($roleName, 'fast-survey/download') ? 1 : 0;
15
$allowDownload  = $acl->isAllowed($roleName, 'fast-survey/download') ? 1 : 0;
Línea 16... Línea 16...
16
 
16
 
17
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
17
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
Línea 18... Línea -...
18
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
19
 
-
 
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
-
 
-
 
18
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
19
 
-
 
20
 
Línea 21... Línea 21...
21
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
21
 
Línea 22... Línea 22...
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
22
 
23
 
23
 
Línea 76... Línea 76...
76
        }
76
        }
77
    });
77
    });
Línea 78... Línea 78...
78
 
78
 
Línea 79... Línea -...
79
    jQuery( document ).ready(function( $ ) {
-
 
80
 
-
 
81
        $.validator.setDefaults({
-
 
82
            debug: true,
-
 
83
            highlight: function(element) {
-
 
84
                $(element).addClass('is-invalid');
-
 
85
            },
-
 
86
            unhighlight: function(element) {
-
 
87
                $(element).removeClass('is-invalid');
-
 
88
            },
-
 
89
            errorElement: 'span',
-
 
90
            errorClass: 'error invalid-feedback',
-
 
91
            errorPlacement: function(error, element) {
-
 
92
                if(element.parent('.form-group').length) {
-
 
93
                    error.insertAfter(element);
-
 
94
                } else if(element.parent('.toggle').length) {
-
 
95
                    error.insertAfter(element.parent().parent());
-
 
96
                } else {
-
 
97
                    error.insertAfter(element.parent());
-
 
98
                }
-
 
99
            }
-
 
100
        });
79
    jQuery( document ).ready(function( $ ) {
101
    
-
 
102
    
-
 
103
        $.fn.showFormErrorValidator = function(fieldname, errors) {
-
 
104
            var field = $(fieldname);
-
 
105
            if(field) {
-
 
106
                $(field).addClass('is-invalid');
-
 
107
    
-
 
108
 
-
 
109
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
-
 
110
                if(field.parent('.form-group').length) {
-
 
111
                    error.insertAfter(field);
-
 
112
                } else  if(field.parent('.toggle').length) {
-
 
113
                    error.insertAfter(field.parent().parent());
-
 
114
                } else {
-
 
115
                    error.insertAfter(field.parent());
-
 
116
                }
-
 
Línea 117... Línea 80...
117
            }
80