Browse Source

Merge branch 'master' of github.com:ant-design/ant-design

pull/596/head
afc163 9 years ago
parent
commit
e88fcd2839
  1. 18
      components/slider/demo/tip-formatter.md
  2. 1
      components/slider/index.md

18
components/slider/demo/tip-formatter.md

@ -0,0 +1,18 @@
# 格式化 `Tooltip` 内容
- order: 5
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容。
---
````jsx
import { Slider } from 'antd';
function formatter(value) {
return '$' + value;
}
ReactDOM.render(<Slider tipFormatter={formatter} />
, document.getElementById('components-slider-demo-tip-formatter'));
````

1
components/slider/index.md

@ -25,3 +25,4 @@
| included | Boolean | true | `marks` 不为空对象时有效,值为 true 时表示值为包含关系,false 表示并列
| disabled | Boolean | false | 值为 `true` 时,滑块为禁用状态
| onChange | Function | NOOP | 当 Slider 的值发生改变时,会触发 onChange 事件,并把改变后的值作为参数传入。
| tipFormatter | Function | | Slider 会把当前值传给 `tipFormatter`,并在 Tooltip 中显示 `tipFormatter` 的返回值。

Loading…
Cancel
Save