1

我正在为表单中的文本区域使用所见即所得的文本编辑器。但它没有显示在具有该表单的 jquery 对话框中

谁能帮我做这件事

提前致谢 ;)

4

1 回答 1

0

我已经尝试过这个 wisiwyg 编辑器并发现它可以工作......你可以看到代码在运行......看看下面的代码

$this->beginWidget('zii.widgets.jui.CJuiDialog', array(
            'id' => 'mydialog',
            // additional javascript options for the dialog plugin
            'options' => array(
                'title' => 'Dialog box 1',
                'autoOpen' => false,
            )
        )
    );

    $this->widget('application.components.widgets.XHeditor', array(
            'language' => 'en', //options are en, zh-cn, zh-tw
            'config' => array(
                'id' => 'xh1',
                'name' => 'xh',
                'tools' => 'mini', // mini, simple, fill or from XHeditor::$_tools
                'width' => '100%',
                //see XHeditor::$_configurableAttributes for more
            ),
            'contentValue' => 'Enter your text here', // default value displayed in textarea/wysiwyg editor field
            'htmlOptions' => array('rows' => 5, 'cols' => 10)
        )
    );

    $this->endWidget('zii.widgets.jui.CJuiDialog');

    echo CHtml::link('open dialog', '#', array('onclick' => '$("#mydialog").dialog("open"); return false;'));
于 2012-10-31T10:25:23.633 回答