ant-design/components/transfer/index.en-US.md

44 lines
2.8 KiB
Markdown
Raw Normal View History

2016-08-03 10:10:13 +08:00
---
category: Components
type: Form Controls
cols: 1
title: Transfer
---
2016-08-04 09:45:50 +08:00
Double column transfer choice box. One or more elements can be selected from either column, one click on the proper 'direction' button, and the transfer is done.
2016-08-03 10:10:13 +08:00
2016-08-04 09:45:50 +08:00
The left column is considered the 'source' and the right column is considered the 'target'. As you can see in the API description, these names are reflected in.
2016-08-03 10:10:13 +08:00
2016-08-04 09:45:50 +08:00
## When To Use
2016-08-04 09:45:50 +08:00
To transfer the elements between two columns in an intuitive and efficient way.
2016-08-03 10:10:13 +08:00
## API
| Property | Description | Type | Default |
|-----------|------------------------------------------|------------|--------|
| dataSource | Used for setting the source data. The elements that are part of this array will be present the left column. Except the elements whose keys are included in `targetKeys` prop. | Array | [] |
2016-08-04 09:45:50 +08:00
| render | The function to generate the item shown on a column. Based on an record (element of the dataSource array), this function should return a React element which is generated from that record. | Function(record) | |
| targetKeys | A set of keys of elements that are listed on the right column. | Array | [] |
| onChange | A callback function that is executed when the transfer between columns is complete. | Function(targetKeys, direction, moveKeys) | |
| onSelectChange | A callback function which is executed when selected items are changed. | Function(sourceSelectedKeys, targetSelectedKeys) | |
| listStyle | A custom CSS style used for rendering the transfer columns. | Object | |
| className | A custom CSS class. | String | |
2016-10-08 15:20:37 +08:00
| titles | A set of titles that are sorted from left to right. | Array | ['Source, 'Target] |
| operations | A set of operations that are sorted from top to bottom. | Array | [] |
| showSearch | If included, a search box is shown on each column. | Boolean | false |
| searchPlaceholder | The hint text of the search box. | String | 'Search here' |
| notFoundContent | Text to display when a column is empty. | React.node | 'The list is empty' |
| footer | A function used for rendering the footer. | Function(props) | |
| lazy | property of [react-lazy-load](https://github.com/loktar00/react-lazy-load) for lazy rendering items | Object | `{ height: 32, offset: 32 }` |
2016-08-03 10:10:13 +08:00
## Warning
According the [standard](http://facebook.github.io/react/docs/multiple-components.html#dynamic-children) of React, the key should always be supplied directly to the elements in the array. In Transfer, the keys should be set on the elements included in `dataSource` array. By default, `key` property is used as an unique identifier.
2016-08-03 10:10:13 +08:00
If there's no `key` in your data, you should use `rowKey` to specify the key that will be used for uniquely identify each element.
2016-08-03 10:10:13 +08:00
```jsx
// eg. your primary key is `uid`
return <Transfer rowKey={record => record.uid} />;
```