Passing items from CGridView to another view in Yii

191 Views Asked by At

I have a view with a CGridView which has also some filtering. I'd like to pass the items from CGridView (or their ids) to another view (of the same controller) where they'll be processed.

I've found this post about exporting the data, there's some JQuery selector, but I guess I should pass the ids to action in controller. How could it be done?

1

There are 1 best solutions below

1
On

You can try using Bulk Actions of TbExtendedGridView in YiiBooster http://yiibooster.clevertech.biz/extended-grid.html#extendedgridview

I'm using it for my project as well.