Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16906 Rev 16929
Línea 19... Línea 19...
19
 
19
 
20
 
20
 
Línea 21... Línea -...
21
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
-
 
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
23
 
-
 
-
 
21
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
-
 
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
23
 
Línea 24... Línea 24...
24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
24
 
Línea 25... Línea 25...
25
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
25
 
26
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
26
 
Línea 46... Línea 46...
46
$this->inlineScript()->captureStart();
46
$this->inlineScript()->captureStart();
47
echo <<<JS
47
echo <<<JS
48
    jQuery( document ).ready(function( $ ) {
48
    jQuery( document ).ready(function( $ ) {
Línea 49... Línea -...
49
 
-
 
50
 
-
 
51
       $.validator.setDefaults({
-
 
52
            debug: true,
-
 
53
            highlight: function(element) {
-
 
54
                $(element).addClass('is-invalid');
-
 
55
            },
-
 
56
            unhighlight: function(element) {
-
 
57
                $(element).removeClass('is-invalid');
-
 
58
            },
-
 
59
            errorElement: 'span',
-
 
60
            errorClass: 'error invalid-feedback',
-
 
61
            errorPlacement: function(error, element) {
-
 
62
                if(element.parent('.form-group').length) {
-
 
63
                    error.insertAfter(element);
-
 
64
                } else if(element.parent('.toggle').length) {
-
 
65
                    error.insertAfter(element.parent().parent());
-
 
66
                } else {
-
 
67
                    error.insertAfter(element.parent());
-
 
68
                }
-
 
69
            }
-
 
70
        });
-
 
71
    
-
 
72
    
-
 
73
        $.fn.showFormErrorValidator = function(fieldname, errors) {
-
 
74
            var field = $(fieldname);
-
 
75
            if(field) {
-
 
76
                $(field).addClass('is-invalid');
-
 
77
    
-
 
78
 
-
 
79
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
-
 
80
                if(field.parent('.form-group').length) {
-
 
81
                    error.insertAfter(field);
-
 
82
                } else  if(field.parent('.toggle').length) {
-
 
83
                    error.insertAfter(field.parent().parent());
-
 
84
                } else {
-
 
85
                    error.insertAfter(field.parent());
-
 
86
                }
-
 
87
            }
-
 
88
        };
-
 
89
 
-
 
Línea 90... Línea 49...
90
 
49
 
91
 
50