breadcrumbs=array( 'Articles'=>array('index'), 'Manage', ); $this->menu=array( array('label'=>'List Article', 'url'=>array('index')), array('label'=>'Create Article', 'url'=>array('create')), ); Yii::app()->clientScript->registerScript('search', " $('.search-button').click(function(){ $('.search-form').toggle(); return false; }); $('.search-form form').submit(function(){ $('#article-grid').yiiGridView('update', { 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')); ?> widget('zii.widgets.grid.CGridView', array( 'id'=>'article-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, 'columns'=>array( 'id', 'name', 'type', 'title', 'content', 'geoLat', /* 'geoLon', 'externalLink', 'dateTime', */ array( 'class'=>'CButtonColumn', ), ), )); ?>