hi,
I am still work in multimodelform, and now I want to place calendar in $model2, but I can’t place it.
this my code in model2.php
public function getMultiModelForm()
{
return array(
'elements'=>array(
'date_birth' => array(
$this->widget('zii.widgets.jui.CJuiDatePicker', array(
'name'=>'date_birth',
// additional javascript options for the date picker plugin
'options'=>array(
'showAnim'=>'fold',
),
'htmlOptions'=>array(
'style'=>'height:20px;'
),
));
)
);
What I can tell you, this is not work all, the error is $this-widget (‘zii.widgets.jui.CJuiDatePicker’ is undefine,
what the right code? and also how to shape the form in model2 became gridview? I have try just insert like this and it can’t.