Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7195 Rev 7197
Línea 19... Línea 19...
19
$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar/locale/es-us.js'));
19
$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar/locale/es-us.js'));
20
//$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar-scheduler/dist/scheduler.js'));
20
//$this->inlineScript()->appendFile($this->basePath('vendors/fullcalendar-scheduler/dist/scheduler.js'));
21
//$this->inlineScript()->appendFile($this->basePath('vendors/iCheck/icheck.min.js'));
21
//$this->inlineScript()->appendFile($this->basePath('vendors/iCheck/icheck.min.js'));
22
$this->inlineScript()->appendFile($this->basePath('vendors/popper/umd/popper.js'));
22
$this->inlineScript()->appendFile($this->basePath('vendors/popper/umd/popper.js'));
Línea -... Línea 23...
-
 
23
 
-
 
24
$this->inlineScript()->appendFile($this->basePath('vendors/jsrender/jsrender.js'));
Línea 23... Línea 25...
23
 
25
 
Línea 24... Línea 26...
24
 
26
 
25
$defaultDate = date('Y-m-d');
27
$defaultDate = date('Y-m-d');
Línea 42... Línea 44...
42
            'data'      :  {
44
            'data'      :  {
43
                t : moment().unix()
45
                t : moment().unix()
44
            },
46
            },
45
        }).done(function(response) {
47
        }).done(function(response) {
46
            if(response['success']) {
48
            if(response['success']) {
47
            
-
 
-
 
49
                $('#containerNextEvents').html( 
-
 
50
                    $('#templateNextEvents').render(response['data'])
-
 
51
                );
48
            } else {
52
            } else {
49
                $.fn.showError(response['data']);
53
                $.fn.showError(response['data']);
50
            }
54
            }
51
        }).fail(function( jqXHR, textStatus, errorThrown) {
55
        }).fail(function( jqXHR, textStatus, errorThrown) {
52
            $.fn.showError(textStatus);
56
            $.fn.showError(textStatus);
Línea 121... Línea 125...
121
    });
125
    });
Línea 122... Línea 126...
122
 
126
 
123
    $('body').on('click', 'a.goto-backend', function(e) {
127
    $('body').on('click', 'a.goto-backend', function(e) {
124
        e.preventDefault();
128
        e.preventDefault();
125
        var action = $(this).attr('href');
-
 
126
 
-
 
-
 
129
        var action = $(this).attr('href');
127
        
130
        if(action) {
-
 
131
            $.fn.openBackend(action)
128
        $.fn.openBackend(action)
132
    }
Línea 129... Línea 133...
129
    });
133
    });
Línea 148... Línea 152...
148
   			<div id="calendar-events" class="col-12 col-md-4">
152
   			<div id="calendar-events" class="col-12 col-md-4">
149
				<div class="task-widget">
153
				<div class="task-widget">
150
					<div class="sd-title d-flex align-items-center justify-content-between"
154
					<div class="sd-title d-flex align-items-center justify-content-between"
151
						><h3>Eventos y Tareas</h3>
155
						><h3>Eventos y Tareas</h3>
152
					</div>
156
					</div>
153
					<div class="d-flex flex-column" style="gap: 0.5rem; max-height: 500px; overflow: hidden scroll;">
157
					<div id="containerNextEvents" class="d-flex flex-column" style="gap: 0.5rem; max-height: 500px; overflow: hidden scroll;">
154
						<a href="" target="_blank" rel="noreferrer">
-
 
155
							<div class="calendar-event" style="color: rgb(0, 0, 0); background: rgb(128, 128, 255);">
-
 
156
								<h4><b>Evento: </b> Vendedor Senior LMS</h4><span><b>Inicio: </b>8/19/2023, 8:00:00 PM</span>
-
 
157
							</div>
-
 
158
						</a>
158
						
159
   					</div>
159
   					</div>
160
   				</div>	
160
   				</div>	
161
   			</div>
161
   			</div>
162
   		</div>
162
   		</div>
163
	</div>
163
	</div>
164
</section>
-
 
165
164
</section>
-
 
165
 
-
 
166
<script id="templateNextEvents" type="text/x-jsrender">
-
 
167
    <a href=""  class="goto-backend" rel="noreferrer">
-
 
168
	   <div class="calendar-event" style="{{:textColor}}; background: {{:backgroundColor}}">
-
 
169
	       <h4><b>LABEL_EVENT: </b> {{:title}}S</h4><span><b>LABEL_START: </b>{{:start}}</span>
-
 
170
	   </div>
-
 
171
    </a>
-
 
172
</script>
-
 
173
 
-
 
174
 
-
 
175