breadcrumbs=array( 'Empresas'=>array('index'), 'Manage', ); $this->menu=array( array('label'=>'List Empresa', 'url'=>array('index')), array('label'=>'Create Empresa', '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('empresa-grid', { data: $(this).serialize() }); return false; }); "); ?>

Manage Empresas

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')); ?> widget('zii.widgets.grid.CGridView', array( 'id'=>'empresa-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, 'columns'=>array( 'id', 'cif', 'nombre', 'email', 'pagina_web', 'empleados', /* 'direccion', 'descripcion', */ array( 'class'=>'CButtonColumn', ), ), )); ?>