我使用react-bootstrap
将bootstrap
元素添加到我的应用中。我需要添加一个下拉按钮,其中包含一个"标签列表"用户可以用来标记他们的项目。
我的问题是添加一个输入字段,以便他们可以添加一个" custom"标签。以下是它当前的样子(蓝色方块是复选框):
首先我尝试了:
<Dropdown id="myDropdown">
<Dropdown.Toggle bsStyle="warning">Label as...</Dropdown.Toggle>
<Dropdown.Menu>
<li onSelect={...}>
<Checkbox onClick={...} checked={...} inline>Some label</Checkbox>
</li>
<li onSelect={...}>
<Checkbox onClick={...} checked={...} inline>Some other label</Checkbox>
</li>
<li><input /></li>
</Dropdown.Menu>
</Dropdown>
但是,当您点击dropdown
元素时,这会关闭input
。
所以我尝试对官方文档中显示的示例进行略微修改(搜索&#34; Custom Dropdown Components&#34;并查看代码)。这样我就可以点击并输入input
,但现在点击元素外部时,下拉列表不会关闭。
TL; DR
如何实现一个下拉列表,允许我点击在您点击菜单外单时也会关闭的input
字段?
修改
为我的第二个实现添加生成的html:
<div class="dropdown btn-group">
<button type="button" class="dropdown-toggle btn btn-warning"><i class="fa fa-check" aria-hidden="true"></i><!-- react-text: 153 --> <!-- /react-text --><!-- react-text: 154 -->Label as...<!-- /react-text --><!-- react-text: 155 --> <!-- /react-text --><span class="caret"></span></button>
<ul class="dropdown-menu">
<li><label class="checkbox-inline"><input type="checkbox" value="on"><span></span><!-- react-text: 162 --> Some label<!-- /react-text --></label></li>
<li><label class="checkbox-inline"><input type="checkbox" value="on"><span></span><!-- react-text: 167 --> Some other label<!-- /react-text --></label></li>
<li><label class="checkbox-inline"><input type="checkbox" value="on"><span></span><input type="text" value="" style="height: 17px;font-size: .9em;"></label></li>
<li role="separator" class="divider"></li>
<li role="presentation" class=""><a role="menuitem" tabindex="-1" href="#">Clear labels</a></li>
</ul>
</div>
答案 0 :(得分:1)
所以我几天前找到了答案,我会在这里发布,以防万一有人在将来偶然发现这篇文章。
您需要安装react-overlays
并导入ReactRootWrapper
。修改示例代码(来自文档中的Custom Dropdown Component),该组件现在应该类似于:
<RootCloseWrapper onRootClose={this.setOpenStateToFalse}>
<Dropdown id="dropdown-custom-menu" open={this.state.open} onToggle={this.toggleOpenState}>
<CustomToggle bsRole="toggle">Custom toggle</CustomToggle>
<CustomMenu bsRole="menu">
<MenuItem eventKey="1">Red</MenuItem>
<MenuItem eventKey="2">Blue</MenuItem>
<MenuItem eventKey="3" active>Orange</MenuItem>
<MenuItem eventKey="1">Red-Orange</MenuItem>
</CustomMenu>
</Dropdown>
</RootCloseWrapper>
我没有添加示例中的函数,但是他们的名字解释了他们的作用。基本上setOpenStateToFalse()
需要始终将this.state.open
设置为false
,而toggleOpenState()
需要反转this.state.open
的当前布尔值。
希望有人觉得这很有用。