2

我正在寻找一种方法来替换“搜索...”默认输入字符串。查看MultiSelect 组件(和示例页面)的 Blueprint Labs 文档,我找不到设置渲染输入的占位符文本的方法。我曾假设它的工作方式类似于 Suggest 组件,但允许 inputProps 通过,但这似乎不起作用。这是我的示例代码:

<MultiSelect inputProps={{placeholder: "Search for a country"}} ...otherProps />
4

1 回答 1

4

使用tagInputProps.

<MultiSelect
   tagInputProps={{ placeholder: 'Search for a country' }}
   itemRenderer={this.foo}
   tagRenderer={this.foo}
   items={[]}
   selectedItems={[]}
   onItemSelect={this.bar}
 />

按预期工作

在此处输入图像描述

于 2017-10-18T23:53:55.437 回答