Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16822 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

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