Skip to content

Instantly share code, notes, and snippets.

@enyachoke
Created September 14, 2012 11:15
Show Gist options
  • Save enyachoke/3721364 to your computer and use it in GitHub Desktop.
Save enyachoke/3721364 to your computer and use it in GitHub Desktop.
A yii datepicker code
<div class="row">
<?php echo $form->labelEx($model,'End_date'); ?>
<?php $this->widget('zii.widgets.jui.CJuiDatePicker', array(
'model'=>$model, 'attribute'=>'End_date',
'options'=>array(
'dateFormat'=>'yy-mm-dd',
'yearRange'=>'-70:+0',
'changeYear'=>'true',
'changeMonth'=>'true',
),
)); ?>
<?php echo $form->error($model,'End_date'); ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment