mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
up demo
This commit is contained in:
parent
59b999c9ed
commit
c09332ce1d
@ -13,7 +13,7 @@ const TreeNode = TreeSelect.TreeNode;
|
||||
const Demo = React.createClass({
|
||||
getInitialState() {
|
||||
return {
|
||||
value: '1',
|
||||
value: 'leaf1',
|
||||
};
|
||||
},
|
||||
onChange(e) {
|
||||
@ -30,14 +30,14 @@ const Demo = React.createClass({
|
||||
<div style={{margin: 20}}>
|
||||
<h2>Single Select</h2>
|
||||
<TreeSelect style={{width: 300}} showSearch
|
||||
value={this.state.value}
|
||||
value={this.state.value} optionLabelProp="title"
|
||||
dropdownMenuStyle={{maxHeight: 200, overflow: 'auto'}}
|
||||
treeProps={{defaultExpandAll: true}}
|
||||
onChange={this.onChange}>
|
||||
<TreeNode value="parent 1" title="parent 1" key="0-1">
|
||||
<TreeNode value="parent 1-0" title="parent 1-0" key="0-1-1">
|
||||
<TreeNode value="leaf" title="leaf" key="random" />
|
||||
<TreeNode value="leaf" title="leaf" key="random1" />
|
||||
<TreeNode value="leaf1" title="my leaf" key="random" />
|
||||
<TreeNode value="leaf2" title="your leaf" key="random1" />
|
||||
</TreeNode>
|
||||
<TreeNode value="parent 1-1" title="parent 1-1" key="random2">
|
||||
<TreeNode value="sss" title={<span style={{color: 'red'}}>sss</span>} key="random3" />
|
||||
|
Loading…
Reference in New Issue
Block a user