[font="Trebuchet MS"]Hi, i am using this code for date picker
<div class="row">
                <?php echo $form->labelEx($model,'launchDate'); ?>
                <?php $this->widget('zii.widgets.jui.CJuiDatePicker', array(
                 'name'=>'launchDate',
                 'value'=>$model->launchDate,
                 'options'=>array('changeMonth'=>'true', 'changeYear'=>'true'),
                 'htmlOptions'=>array(''=>'')  // None at the moment
                   ));
   ?>
                <?php echo $form->error($model,'launchDate'); ?>
</div>
but the date filed is not getting in the $_POST, while other fields are getting in $_POST.
What is the issue in this? do i need to change anywhere in model or controller? please help me out [/font]