Advertisement
christiansalazarh

gridview date

Aug 18th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php $this->widget('zii.widgets.grid.CGridView', array(
  2.  'id'=>'prueba-grid',
  3.  'dataProvider'=>$model->search(),
  4.  'filter'=>$model,
  5.  'columns'=>array(
  6.   'idprueba',
  7.   array('name'=>'fecha','type'=>'date'),
  8.   array(
  9.    'class'=>'CButtonColumn',
  10.   ),
  11.  ),
  12. )); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement