Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 14915 Rev 14916
Línea 420... Línea 420...
420
    $('body').on('click', 'button.btn-refresh', function (e) {
420
    $('body').on('click', 'button.btn-refresh', function (e) {
421
        e.preventDefault();
421
        e.preventDefault();
422
        gridTable.api().ajax.reload(null, false);
422
        gridTable.api().ajax.reload(null, false);
423
    });
423
    });
Línea 424... Línea -...
424
 
-
 
425
 
424
 
426
    CKEDITOR.replace('coment', {
425
    CKEDITOR.replace('coment', {
427
        toolbar: [
426
        toolbar: [
428
                    { name: 'editing', items: ['Scayt'] },
427
                    { name: 'editing', items: ['Scayt'] },
429
                    { name: 'links', items: ['Link', 'Unlink'] },
428
                    { name: 'links', items: ['Link', 'Unlink'] },
Línea 437... Línea 436...
437
                removePlugins: 'elementspath,Anchor',
436
                removePlugins: 'elementspath,Anchor',
438
                heigth: 100
437
                heigth: 100
439
    });
438
    });
440
});
439
});
441
JS;
440
JS;
442
 
-
 
443
$jsonInterview = json_encode($interview);
-
 
444
 
-
 
445
$js = <<<JS
-
 
446
	const backendVariables= {
-
 
447
        user: $jsonInterview
-
 
448
	}	
-
 
449
 
-
 
450
    console.log(backendVariables)
-
 
451
JS;
-
 
452
 
-
 
453
$this->inlineScript()->appendScript($js);
-
 
454
$this->inlineScript()->captureEnd();
441
$this->inlineScript()->captureEnd();
455
?>
442
?>
Línea 456... Línea 443...
456
 
443