Add placeholder

This commit is contained in:
afc163 2015-07-21 11:05:11 +08:00
parent 3c8117f85f
commit 3b6ea9846d
2 changed files with 6 additions and 1 deletions

View File

@ -32,7 +32,10 @@ var Test = React.createClass({
});
},
render() {
return <Select combobox style={{width:200}} onChange={this.handleChange}>
return <Select combobox
style={{width:200}}
onChange={this.handleChange}
searchPlaceholder="请输入账户名">
{this.state.options}
</Select>;
}

View File

@ -30,4 +30,6 @@
| onDeselect | 取消选中时调用参数为选中的option value值仅在multiple或tags模式下生效 | function | 无 |
| onChange | 选中option或input的value变化(combobox模式下)时,调用此函数 | function | 无 |
| allowClear | 显示清除按钮 | | false |
| placeholder | 选择框默认文字 | string | 无 |
| searchPlaceholder | 搜索框默认文字 | string | 无 |
| combobox | 输入框自动提示模式 | | false |