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

Manage Photos

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'=>'photo-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, 'columns'=>array( 'id', 'title', 'description', 'imageUrl', 'geoLat', 'geoLon', array( 'class'=>'CButtonColumn', ), ), )); ?>