ant-design/components/table
RaoHai 2c1fda70d6 Table 列选择模式重构
+ 表格 `rowSelection` 支持多选
+ 表格可配置某行数据默认选中、不能选中。该配置对 ajax 载入的数据有效。
示例:
```
getCheckboxProps: function (value) {
    return {
        defaultValue: value.name === '胡彦祖ajax2', // 配置默认勾选的列
        disabled: value.name === '李大嘴ajax3'    // 配置无法勾选的列
    }
},
```
2015-10-09 17:14:09 +08:00
..
demo Table 列选择模式重构 2015-10-09 17:14:09 +08:00
filterDropdown.jsx update eslintrc and fix code 2015-09-01 16:19:39 +08:00
index.jsx Table 列选择模式重构 2015-10-09 17:14:09 +08:00
index.md add expand table 2015-09-10 11:04:31 +08:00