Skip to content

Instantly share code, notes, and snippets.

@vrushank-snippets
Created December 24, 2012 08:57
Show Gist options
  • Save vrushank-snippets/4368424 to your computer and use it in GitHub Desktop.
Save vrushank-snippets/4368424 to your computer and use it in GitHub Desktop.
Yii : Date Picker
<?php
$this->widget('zii.widgets.jui.CJuiDatePicker', array(
'name'=>'from_date',
'options'=>array(
'showAnim'=>'fold', // 'show' (the default), 'slideDown', 'fadeIn', 'fold'
'dateFormat'=>'dd-mm-yy',
'showOn'=>'button', // 'focus', 'button', 'both'
'buttonText'=>Yii::t('ui','Select form calendar'),
'buttonImage'=>Yii::app()->baseUrl.'/images/calendar.png',
'buttonImageOnly'=>true,
),
'htmlOptions'=>array(
'style'=>'width:80px;vertical-align:top'
),
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment