ant-design/components/cascader/demo/disabled-option.md

52 lines
809 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
title:
zh-CN: 禁用选项
en-US: Disabled option
2016-03-31 09:40:55 +08:00
---
2016-01-25 15:31:08 +08:00
## zh-CN
2016-01-25 15:31:08 +08:00
通过指定 options 里的 `disabled` 字段。
## en-US
Disable option by specifying the `disabled` property in `options`.
2017-02-13 10:55:53 +08:00
````jsx
2016-01-25 15:31:08 +08:00
import { Cascader } from 'antd';
const options = [{
value: 'zhejiang',
2016-09-10 18:23:24 +08:00
label: 'Zhejiang',
2016-01-25 15:31:08 +08:00
children: [{
value: 'hangzhou',
2016-09-10 18:23:24 +08:00
label: 'Hangzhou',
2016-01-25 15:31:08 +08:00
children: [{
value: 'xihu',
2016-09-10 18:23:24 +08:00
label: 'West Lake',
2016-01-25 15:31:08 +08:00
}],
}],
}, {
value: 'jiangsu',
2016-09-10 18:23:24 +08:00
label: 'Jiangsu',
2016-01-25 15:31:08 +08:00
disabled: true,
children: [{
value: 'nanjing',
2016-09-10 18:23:24 +08:00
label: 'Nanjing',
2016-01-25 15:31:08 +08:00
children: [{
value: 'zhonghuamen',
2016-09-10 18:23:24 +08:00
label: 'Zhong Hua Men',
2016-01-25 15:31:08 +08:00
}],
}],
}];
function onChange(value) {
console.log(value);
}
ReactDOM.render(
<Cascader options={options} onChange={onChange} />
, mountNode);
````