Proyectos de Subversion LeadersLinked - Backend

Rev

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

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