I chose Yii, because of it’s great ‘GridView’ feature.
After few days I found out that there is no option to group model attributes (put them in 1 column). This option would be very useful when you want show grid of model that has 50 attributes.
Example:
In model ‘ShopTransaction’ are attributes: …, name, surname, street, street_number, city, city_code, country, …
Normal GridView show them in 7 columns. Would be nice if I could put all of them in one column and set some separators like " " or ",\n" between attributes.
I made classes that does it ( http://www.yiiframework.com/forum/index.php/topic/52618-yii2-grid/page__view__findpost__p__255759 ), but I think it’s not nice to modify framework class (Column.php), so maybe you could add something like that in Yii2.