TbButton重置不适用于redactorRow

时间:2014-03-13 10:57:47

标签: twitter-bootstrap reset redactor

请参阅以下代码:

<?php
$label = $model->isNewRecord ? 'Create' : 'Update';
$form = $this->beginWidget('bootstrap.widgets.TbActiveForm', array(
    'id' => 'article-form',
    'type' => 'horizontal',
));
?>
<fieldset>
    <legend><?php echo $label ?> Article</legend>
    <?php
    echo $form->textFieldRow($model, 'title', array('class' => 'span5', 'maxlength' => 200));
echo $form->redactorRow($model, 'content');
?>
</fieldset>
<div class="form-actions">
    <?php $this->widget('bootstrap.widgets.TbButton', array('buttonType' => 'submit', 'type' => 'primary', 'label' => $label)); ?>
    <?php $this->widget('bootstrap.widgets.TbButton', array('buttonType' => 'reset', 'label' => 'Reset')); ?>
    <?php $this->widget('bootstrap.widgets.TbButton', array('buttonType' => 'link', 'url' => url('article/index'), 'label' => 'Cancel')); ?>
</div>
<?php $this->endWidget(); ?>

首先我输入字段:标题(文本字段)和内容(编辑器) 其次,我单击重置按钮 =&GT;结果:只有标题字段为空文本,不适用于内容。

请帮我这样做!

谢谢和问候,

1 个答案:

答案 0 :(得分:0)

我仍然没有发现问题。 但我有jquery的解决方案。

<?php
cs()->registerScript('reset', "
    var firstContent = [];

    $('.redactor_editor').each(function(index, value) {
        firstContent.push($(this).html());
    });

    $(document).ready(function() {
        $('button[type=\'reset\']').click(function() {
            $('.redactor_editor').each(function(index, value) {
                $(this).html(firstContent[index]);
            });
        }); 
    });
", CClientScript::POS_LOAD);
?>

工作正常!

有人有其他解决方案吗? 请在这里分享!

非常感谢!