danyaPostfactum / modx-ace

ACE editor integration into MODx
24 stars 23 forks source link

Ace на вкладке кэша в Обзоре ресурса? #40

Open argnist opened 10 years ago

argnist commented 10 years ago

Возможно ли добавить Ace туда (т.к. там длинный html-код подсветка бы не помешала). Попробовал в отдельном плагине на OnDocFormPrerender добавить

<?php
if ($modx->event->name == 'OnDocFormPrerender') {
    if ($modx->controller->config['controller'] == 'resource/data') {
        $modx->controller->addHTML("<script>
        Ext.onReady(function(){
           MODx.ux.Ace.replaceComponent('modx-rdata-buffer', 'text/html', true);
          });
        </script>");
    }
}

Поле заменилось, но оно пустое.