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

Manage Users

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'=>'user-grid', 'dataProvider'=>$model->search(), 'filter'=>$model, 'columns'=>array( 'id', 'username', 'created_at', 'last_login', 'is_active', 'is_super_admin', 'admin_pw_reset', 'user_pw_reset', array( 'class'=>'CButtonColumn', 'template'=>'{email}{view}{update}{delete}', 'buttons'=>array( 'email'=>array( 'label'=>'Generate new password and email it', 'imageUrl'=>Html::imageUrl('email.png'), 'click'=>'function(){generatePassword($(this).parent().parent().children(":first-child").text());}' ) ) ), ), )); ?>