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

yii\bootstrap\ButtonDropdown <ul> element id should follow master id property #236

Open
tsdogs opened this issue Apr 4, 2018 · 0 comments
Labels
type:enhancement Enhancement

Comments

@tsdogs
Copy link

tsdogs commented Apr 4, 2018

What steps will reproduce the problem?

Creating a ButtonDropDown inside a page which then loads code via ajax needs the "id" property to be set to avoid conflicts:

<?= ButtonDropdown::widget([
    'label'=>'Example Dropdown',
    'id'=>'dropdown-button',
    'dropdown'=>[
        'items'=>$items,
    ],
]) ?>

To make it non conflicting you need to sepcify the id also in the 'dropdown' options like

<?= ButtonDropdown::widget([
    'label'=>'Example Dropdown',
    'id'=>'dropdown-button',
    'dropdown'=>[
        'items'=>$items,
        'options' => [ 'id' => 'dropdown-button-ul' ],
    ],
]) ?>

What's expected?

The rendered UL should assume at least a base id dependent something like:

<div class="btn-group" style="width: 15%;">
<button id="dropdown-button" class="btn btn-success dropdown-toggle"  data-toggle="dropdown" aria-expanded="false">Example Dropdown <span class="caret"></span></button>

<ul id="dropdown-button-w0" class="dropdown-menu-right dropdown-menu"><li><a href="#1" tabindex="-1">Option 1</a></li>
<li><a href="#2" tabindex="-1">Option 2</a></li>
</ul>
</div>

What do you get instead?

<div class="btn-group" style="width: 15%;">
<button id="dropdown-button" class="btn btn-success dropdown-toggle"  data-toggle="dropdown" aria-expanded="false">Example Dropdown <span class="caret"></span></button>

<ul id="w0" class="dropdown-menu-right dropdown-menu"><li><a href="#1" tabindex="-1">Option 1</a></li>
<li><a href="#2" tabindex="-1">Option 2</a></li>
</ul>
</div>

Additional info

It works correctly if there is no ajax loading with javascript attached to widgets.
Beside the fact that id's in sub widgets should follow the master widget schema imho, maybe there should be a better default to handle ajax requests which generate a more unique id if not explicitly specified.

@machour machour added the type:enhancement Enhancement label Jan 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type:enhancement Enhancement
Projects
None yet
Development

No branches or pull requests

2 participants