Yii editMe WYSIWYG 不会保存编辑。
我在我的一个表单中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,所以我做了一些挖掘。小部件应插入到已设置操作属性的
中。不需要提交按钮。扩展程序自己的保存按钮将通过此更改激活并无缝运行。
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.