我正在尝试在通过ajax更新的视图中使用yiibooster select2row小部件。 我有一个select2row,其中包含按模型检索的人员名单。
选择一个后,我尝试通过ajax和renderpartial更新视图中的其他字段。 我这样做是为on change事件注册一个脚本。
它第一次工作,但在渲染部分之后它不再起作用了......甚至小部件也不再正确渲染。
这是我的控制器动作
public function ActionView() {
// Model Setting
if(isset($_POST[idKey]) and $_POST[idKey] > 0) {
$docente=Docente::model()->findByPk($_POST[idKey]);
} else {
$docente=new Docente();
}
if (Yii::app()->request->isAjaxRequest) {
echo CJSON::encode(array(
'divFormScheda'=>$this->renderPartial('_form',array('docente'=>$docente,), true, false),
));
} else {
$this->render('view', array('docente'=>$docente,));
}
}
这是我的观点
// Script to make the ajax update on change of the select2 widget
Yii::app()->clientScript->registerScript('wric', "
jQuery('#Docente_id').on('change', function(e) {
var idKey = $('#Docente_id').val();
jQuery.ajax({
'url':'/regele/docente/view',
'data':$(this).serialize() + '&idKey=' + idKey,
'type':'post',
'dataType':'json',
'success':function(data) {
$('#divFormScheda').html(data.divFormScheda);
},
'cache':false
});
return false;
});
");
//
// Display Scheda
//
echo CHtml::openTag('div',array('id'=>'divFormScheda'));
$this->renderPartial('_form', array('docente'=>$docente,), false, false);
echo CHtml::closeTag('div');
这里我的_form.php用于renderpartial
$form = $this->beginWidget(
'bootstrap.widgets.TbActiveForm',
array(
'id' => 'idFormR',
'type' => 'horizontal',
'htmlOptions' => array('class' => 'well'),
)
);
// Error
echo $form->errorSummary($docente,"Errori riscontrati:<br /><br />");
// Input Hidden to read the idKey to set the ajax post
echo $form->hiddenField($docente, 'id', array('id' => 'idKey'));
// select2row widget for the selection
echo $form->select2Row($docente, 'id',
array(
'data' => CHtml::listData(Docente::model()->findAll(), 'id', 'cognome'),
'options' => array(
'placeholder' => 'Select ...',
'allowClear' => true,
'width' => '40%',
)
)
);
// Fields
echo $form->textFieldRow($docente, 'nome', array('class' => 'input-xlarge', 'disabled' => true));
$this->endWidget();
在表单中,我使用隐藏字段来存储脚本中使用的id,以通过POST发送ajax请求。
我真的不明白为什么它只是第一次工作.....
由于
答案 0 :(得分:0)
您应该将processOutput设置为true,即:
$this->renderPartial('_form',array('docente'=>$docente,), true, true);
它应该以这种方式工作