breadcrumbs=array( 'Eventoses'=>array('index'), 'Manage', ); $this->menu=array( array('label'=>'List Eventos','url'=>array('index')), array('label'=>'Create Eventos','url'=>array('create')), ); Yii::app()->clientScript->registerScript('search', " $('.search-button').click(function(){ $('.search-form').toggle(); return false; }); $('.search-form form').submit(function(){ $.fn.yiiGridView.update('eventos-grid', { data: $(this).serialize() }); return false; }); "); ?>
You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done.
'search-button btn')); ?> widget('bootstrap.widgets.TbGridView',array( 'id'=>'eventos-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, 'columns'=>array( 'id_evento', 'nombre', 'descripcion', 'fecha', 'lugar', 'link', /* 'imagen', 'activo', */ array( 'class'=>'bootstrap.widgets.TbButtonColumn', ), ), )); ?>