pageTitle = 'Manage Logs - ' . Yii::app()->name; $this->breadcrumbs=array( 'Logs'=>array('index'), 'Manage', ); $this->menu=array( array('label'=>'List Log', 'url'=>array('index')), array('label'=>'Create Log', 'url'=>array('create')), ); Yii::app()->clientScript->registerScript('search', " $('.search-button').click(function(){ $('.search-form').toggle(); return false; }); $('.search-form form').submit(function(){ $('#log-grid').yiiGridView('update', { data: $(this).serialize() }); return false; }); "); ?>

Manage Logs

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'=>'log-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, 'columns'=>array( 'ID', 'date', 'title', 'content', array( 'class'=>'bootstrap.widgets.TbButtonColumn', ), ), )); ?>