Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dropDownList optgroup label #3729

Closed
aktec opened this issue Jan 26, 2015 · 0 comments
Closed

dropDownList optgroup label #3729

aktec opened this issue Jan 26, 2015 · 0 comments

Comments

@aktec
Copy link

aktec commented Jan 26, 2015

Если я использую в dropDownList список с группами, а в опциях передаю параметр 'groups' с label для каждой группы,то они все равно не выводятся.

Проблема вот здесь: https://github.com/yiisoft/yii2/blob/master/framework/helpers/BaseHtml.php#L1565
после того, как применяются настройки, переданные в массиве groups, 'label' перезаписывается ключом из $items

решается конечно, элементарно:
-$groupAttrs['label'] = $key;
+if (!isset($groupAttrs['label']))
+$groupAttrs['label'] = $key;

|| Извиняюсь. Баг относится ко второй версии. не туда запостил :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants