1

我正在开发一个模块,该模块需要输入一些 html 以便稍后调用并成为面向客户的小部件输出的一部分。

我创建了一个管理后端,一切正常,但是当我在应该存储数据的字段中输入 html 时,我收到一个错误。我不需要所见即所得,但我希望能够将 html 输入到这个值中。

在这一点上,在将字段添加到字段集中时,我没有做任何特别的事情。我错过了什么?

    $contentField = $fieldset->addField('inner_html', 'editor', array(
        'name'      => 'inner_html',
        'style'     => 'height:36em;width:36em',
        'required'  => false,
    ));
4

1 回答 1

1

尝试

$fieldset->addField('inner_html', 'editor', array( 
    'name' => 'inner_html', 
    'label' => Mage::helper('tag')->__('Description'), 
    'title' => Mage::helper('tag')->__('Description'), 
    'style' => 'width:700px; height:350px;', 
    'config' => Mage::getSingleton('cms/wysiwyg_config')->getConfig(array('add_variables' => false, 'add_widgets' => false,'files_browser_window_url'=>$this->getBaseUrl().'admin/cms_wysiwyg_images/index/')), 
    'wysiwyg' => true, 
    'required' => false, 
));
于 2013-04-18T19:44:18.187 回答