Fix select demo

This commit is contained in:
afc163 2016-04-27 18:07:48 +08:00
parent 6acb9ce400
commit cfcbc75190
4 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ const Option = Select.Option;
const Test = React.createClass({ const Test = React.createClass({
getInitialState() { getInitialState() {
return { return {
options: [] options: [],
}; };
}, },
handleChange(value) { handleChange(value) {

View File

@ -80,7 +80,7 @@ const SearchInput = React.createClass({
<Select <Select
combobox combobox
value={this.state.value} value={this.state.value}
searchPlaceholder={this.props.placeholder} placeholder={this.props.placeholder}
notFoundContent="" notFoundContent=""
defaultActiveFirstOption={false} defaultActiveFirstOption={false}
showArrow={false} showArrow={false}

View File

@ -3,7 +3,7 @@ order: 1
title: 带搜索框 title: 带搜索框
--- ---
在浮层内顶部有搜索框的单项选择器 展开后可对选项进行搜索
````jsx ````jsx
import { Select } from 'antd'; import { Select } from 'antd';

View File

@ -95,7 +95,7 @@ export default class Header extends React.Component {
<div id="search-box"> <div id="search-box">
<Select combobox <Select combobox
dropdownClassName="component-select" dropdownClassName="component-select"
searchPlaceholder="搜索组件..." placeholder="搜索组件..."
value={undefined} value={undefined}
optionFilterProp="data-label" optionFilterProp="data-label"
filterOption={this.handleSelectFilter} filterOption={this.handleSelectFilter}