Hi…
Here i wanto to give one datepicker but this datepicker is display into the TAB VIEW.How to possible this ?
$personal_info .= $form->labelEx($info,'employee_dob'); //$personal_info is tab name
$this->widget('zii.widgets.jui.CJuiDatePicker', array(
'model'=>$info,
'attribute'=>'employee_dob',
'language'=>Yii::app()->language=='et' ? 'et' : null,
'options'=>array(
'dateFormat'=>'yy-mm-dd',
'showAnim'=>'fold', // 'show' (the default), 'slideDown', 'fadeIn', 'fold'
'showOn'=>'button', // 'focus', 'button', 'both'
'buttonText'=>Yii::t('ui','Select form calendar'),
'buttonImage'=>Yii::app()->request->baseUrl.'/images/calendar.gif',
'buttonImageOnly'=>true,
),
'htmlOptions'=>array(
'style'=>'width:80px;vertical-align:top'
),
));
How to possible the datepicker is display into the tab ?
Please give me some help.