提交 86c5ead4 编写于 作者: A afc163

Add onChange prop to Table, fix #395

上级 3af6ea16
......@@ -64,6 +64,11 @@ var data = [{
address: '西湖区湖底公园123号'
}];
ReactDOM.render(<Table columns={columns} dataSource={data} />
function onChange(pagination, filters, sorter) {
// 点击分页、筛选、排序时触发
console.log('各类参数是', pagination, filters, sorter);
}
ReactDOM.render(<Table columns={columns} dataSource={data} onChange={onChange} />
, document.getElementById('components-table-demo-head'));
````
......@@ -65,7 +65,8 @@ let AntTable = React.createClass({
useFixedHeader: false,
rowSelection: null,
size: 'normal',
bordered: false
bordered: false,
onChange: function() {}
};
},
......@@ -153,21 +154,25 @@ let AntTable = React.createClass({
}
};
}
this.fetch({
sortOrder: sortOrder,
sortColumn: sortColumn,
sorter: sorter
});
const newState = {
sortOrder,
sortColumn,
sorter
};
this.fetch(newState);
this.props.onChange.apply(this, this.prepareParamsArguments(objectAssign({}, this.state, newState)));
},
handleFilter(column, filters) {
filters = objectAssign({}, this.state.filters, {
[this.getColumnKey(column)]: filters
});
this.fetch({
const newState = {
selectedRowKeys: [],
filters: filters
});
filters
};
this.fetch(newState);
this.props.onChange.apply(this, this.prepareParamsArguments(objectAssign({}, this.state, newState)));
},
handleSelect(record, rowIndex, e) {
......@@ -251,11 +256,13 @@ let AntTable = React.createClass({
} else {
pagination.current = pagination.current || 1;
}
this.fetch({
const newState = {
// 防止内存泄漏,只维持当页
selectedRowKeys: [],
pagination: pagination
});
pagination
};
this.fetch(newState);
this.props.onChange.apply(this, this.prepareParamsArguments(objectAssign({}, this.state, newState)));
},
onRadioChange: function (ev) {
......
......@@ -66,8 +66,9 @@ var dataSource = new Table.DataSource({
| size | 正常或迷你类型 | String | `normal` or `small` | normal |
| dataSource | 数据源,可以为数组(本地模式)或一个数据源描述对象(远程模式) | Array or Object | | |
| columns | 表格列的配置描述,具体项见下表 | Array | | 无 |
| rowKey | 表格列 key 的取值 | Function(recode,index):string | | record.key |
| rowKey | 表格列 key 的取值 | Function(recode, index):string | | record.key |
| expandIconAsCell | 设置展开 Icon 是否单独一列 | Boolean | | true |
| onChange | 分页、排序、筛选变化时触发 | Function(pagination, filters, sorter) | | |
### Column
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册