Advertisement
christiansalazarh

CJuiDatePicker

Aug 18th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1.  <?php
  2.   // widget
  3.   $this->widget('zii.widgets.jui.CJuiDatePicker', array(
  4.    'language'=>'es',
  5.    'model'=>$model,
  6.    'attribute'=>'fechaString',
  7.    'flat'=>false,
  8.    'options'=>array(
  9.     'firstDay'=>1,
  10.     'showOn'=>"both",
  11.     //'buttonImage'=>"images/calendar.gif",
  12.     'buttonImageOnly'=> true,
  13.     //'minDate'=>-31,
  14.     //'maxDate'=>0,
  15.     'constrainInput'=>true,
  16.     'currentText'=>'Now',
  17.     'dateFormat'=>'dd/mm/yy',
  18.    ),
  19.    'htmlOptions'=>array(
  20.    ),
  21.   ));
  22.  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement