Skip to content

Instantly share code, notes, and snippets.

@luislobo
luislobo / CGridView with CButtonColumns
Last active December 19, 2015 15:49
If you click on Approve or Revoke, all confirmations of all buttons are run. Using Yii 1.1.13
<?php
$rawData = array(
array( 'id' => 1, 'username' => 'User 1', 'email' => 'hello2@example.com' ),
array( 'id' => 2, 'username' => 'User 2', 'email' => 'hello2@example.com' ),
);
$arrayDataProvider = new CArrayDataProvider( $rawData, array( 'id' => 'id' ) );
$this->widget( 'zii.widgets.grid.CGridView',
array(
'id' => 'user-grid',