kartik-v / yii2-dynagrid

Turbo charge the Yii 2 GridView with personalized columns, page size, and themes.
http://demos.krajee.com/dynagrid
Other
74 stars 66 forks source link

Sort `label` not working with dynagrid #94

Closed iddqdidkfa closed 5 years ago

iddqdidkfa commented 8 years ago

I'm trying to use custom sort labels but dynagrid ignores it. Here is sort configuration for ActiveDataProvider

 [
     'age',
     'name' => [
         'asc' => ['first_name' => SORT_ASC, 'last_name' => SORT_ASC],
         'desc' => ['first_name' => SORT_DESC, 'last_name' => SORT_DESC],
         'default' => SORT_DESC,
         'label' => 'My Custom Sort Label',
     ],
 ]

It still shows Name label in grid header. Should be My Custom Sort Label.

stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.