Yii editMe WYSIWYG 不会保存编辑。

发布于 2024-12-02 00:07:28 字数 1253 浏览 1 评论 0原文

我在我的一个表单中使用 Yii editMe 扩展。所见即所得编辑器填充得非常好并且工作正常,但是当您保存时,不会保存任何更改。

<div class="form">

<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'content-form',
'enableAjaxValidation'=>false,
)); ?>

<p class="note">Fields with <span class="required">*</span> are required.</p>

<?php echo $form->errorSummary($model); ?>

<div class="row">
    <?php echo $form->labelEx($model,'content_title'); ?>
    <?php echo $form->textField($model,'content_title',array('size'=>60,'maxlength'=>80)); ?>
    <?php echo $form->error($model,'content_title'); ?>
</div>

<div class="row">
    <?php echo $form->labelEx($model,'content_text'); ?>
    <?php $this->widget('ext.editMe.ExtEditMe', array(
                'model'=>$model,
                'attribute'=>'content_text',
                ));?>
    <?php echo $form->error($model,'content_text'); ?>

</div>

<div class="row buttons">
    <?php echo CHtml::submitButton($model->isNewRecord ? 'Create' : 'Save'); ?>
</div>

<?php $this->endWidget(); ?>

</div><!-- form -->

这是我的表单页面的代码。

I am using the Yii editMe Extension in one of my forms. The WYSIWYG editor populates perfectly fine and works fine however when you save none of the changes are saved.

<div class="form">

<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'content-form',
'enableAjaxValidation'=>false,
)); ?>

<p class="note">Fields with <span class="required">*</span> are required.</p>

<?php echo $form->errorSummary($model); ?>

<div class="row">
    <?php echo $form->labelEx($model,'content_title'); ?>
    <?php echo $form->textField($model,'content_title',array('size'=>60,'maxlength'=>80)); ?>
    <?php echo $form->error($model,'content_title'); ?>
</div>

<div class="row">
    <?php echo $form->labelEx($model,'content_text'); ?>
    <?php $this->widget('ext.editMe.ExtEditMe', array(
                'model'=>$model,
                'attribute'=>'content_text',
                ));?>
    <?php echo $form->error($model,'content_text'); ?>

</div>

<div class="row buttons">
    <?php echo CHtml::submitButton($model->isNewRecord ? 'Create' : 'Save'); ?>
</div>

<?php $this->endWidget(); ?>

</div><!-- form -->

That is the code for my form page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

万人眼中万个我 2024-12-09 00:07:28

我遇到了同样的问题,所以我做了一些挖掘。小部件应插入到已设置操作属性的

...

中。不需要提交按钮。扩展程序自己的保存按钮将通过此更改激活并无缝运行。

I was having the same problem, so I did a little digging. The widget should be inserted in a <form>...</form> whose action attribute is set. No submit button required. The extension's own save button gets activated by this change and works seamlessly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文