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