Is there any way in yii to create multiple row header and merge it with other columns in GridView. Something like this:http://www.dotnettwitter.com/2010/12/how-to-create-multiple-row-header-and.html.
I am only seeing GroupGridView for the values not on the headers. Thanks.
There is no default way to do this using grid view. You can either you use ListView and modify the header template very easily.. in the view passed to the ListView widget you can simply use
...
Alternatively if you wish to use GridView only you can try a third party extension like http://yiiwheels.2amigos.us/site/grid#groupgridview
It has support for many complex grid structures
I found this http://omfarid.com/2012/06/extensi-yii-untuk-hierarki-header-cgridview/#disqus_thread. It's actually do what I needed.