Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16822 Rev 16840
Línea 229... Línea 229...
229
        });
229
        });
Línea 230... Línea 230...
230
        
230
        
231
        $('body').on('click', 'button.btn-add', function(e) {
231
        $('body').on('click', 'button.btn-add', function(e) {
Línea 232... Línea -...
232
            e.preventDefault();
-
 
-
 
232
            e.preventDefault();
233
 
233
 
234
            $('span[id="form-title"]').html('LABEL_ADD');
234
            
Línea 252... Línea 252...
252
                'method'    : 'get',
252
                'method'    : 'get',
253
                'url'       :  action,
253
                'url'       :  action,
254
            }).done(function(response) {
254
            }).done(function(response) {
255
                if(response['success']) {
255
                if(response['success']) {
Línea 256... Línea -...
256
 
-
 
-
 
256
 
257
                    $('span[id="form-title"]').html('LABEL_EDIT');
257
                    
258
                    $('#form').attr('action', action);
258
                    $('#form').attr('action', action);
259
                    $('#form #name').val(response['data']['name']);
259
                    $('#form #name').val(response['data']['name']);
Línea 260... Línea 260...
260
                    validator.resetForm();
260
                    validator.resetForm();
Línea 370... Línea 370...
370
	<div class="modal-dialog  modal-xl">
370
	<div class="modal-dialog  modal-xl">
371
    	<div class="modal-content">
371
    	<div class="modal-content">
Línea 372... Línea 372...
372
 
372
 
373
            <!-- Modal Header -->
373
            <!-- Modal Header -->
374
      		<div class="modal-header">
374
      		<div class="modal-header">
375
        		<h4 class="modal-title">LABEL_INSTITUTIONS - <span id="form-title"></span></h4>
375
        		<h4 class="modal-title">LABEL_INSTITUTIONS</h4>
376
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
376
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
Línea 377... Línea 377...
377
      		</div>
377
      		</div>
378
 
378