I'm trying to use CJuiDatePicker on a form in yii. The widget looks OK but upon submission, every other form field value gets stored on the db except the date field. What could the problem be?
See my code:
<div class="row">
<?php echo $form->labelEx($model,'date'); ?>
<?php //echo $form->dateField($model,'date');
$this->widget('zii.widgets.jui.CJuiDatePicker',array(
'model'=>$model,
'name'=>'date',
'attribute'=>'date',
// additional javascript options for the date picker plugin
'options'=>array(
'showAnim'=>'fold',
'dateFormat' => 'yy-dd-mm',
),
'htmlOptions'=>array(
'style'=>'height:20px;'
),
));
?>
<?php echo $form->error($model,'date'); ?>
</div>
check "date" field in model
i use this piece of code in model