breadcrumbs=array( 'Secciones'=>array('index'), 'Manage', ); $this->menu=array( array('label'=>'List Secciones','url'=>array('index')), array('label'=>'Create Secciones','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('secciones-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'=>'secciones-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, 'columns'=>array( 'id_seccion', 'seccion', 'contenido', 'activo', 'orden', 'sitio', array( 'class'=>'bootstrap.widgets.TbButtonColumn', ), ), )); ?>