【发布时间】:2020-11-19 14:35:54
【问题描述】:
第一行我有下拉菜单。
第二行我有切换复选框。
当我打开下拉切换复选框重叠下拉。
如何避免。立即响应会有所帮助
<div class="flex-row--margin-10 flex-columns ${isFromPendingProjects ?'':'display-column'}">
<div class="${isFromPendingProjects ?'flex-row__col-34':'menu-column'}">
<io-dropdown value.bind="lobId" change.delegate="enableDisableCreateBtn()" class="${isFromPendingProjects ?'width-95':'width-100'}">
<io-input type="text" placeholder="Line of Business" class="width-100" value.bind="lobText"></io-input>
<io-dropdown-item repeat.for="option of iLOBs" value.bind="option.LobId">${option.LobName}</io-dropdown-item>
</io-dropdown>
</div>
</div>
<br />
<div class="${isFromPendingProjects ?'flex-row__col-34':'menu-column'}" style="width:100%">
<div>
<span style="font-size:16px">Administrative Claims Data</span>
<span class="highlight-text">
<img src="../images/info.svg" data-toggle="tooltip" data-placement="right"
i18n="[title]projectDetail.tooltipIntegrateClaimsData" style="margin-top:-4px" />
</span>
<label class="switch switch-color" style="width:45px; display: inline">
<input type="checkbox" checked.bind="IntegrateClaimsData" change.delegate="enableDisableCreateBtn()" />
<span class="toggleSlider round" style="margin-top:-5px;"></span>
</label>
</div>
</div>
【问题讨论】:
-
在您的问题中包含您的代码。
-
您好,添加了代码。请检查
-
我的问题中还添加了屏幕截图。请检查并尽快回复