<d-data-table
#sourceTable
[dataSource]="basicDataSource"
[checkable]="true"
(rowCheckChange)="sourceRowCheckChange($event)"
(checkAllChange)="sourceCheckAllChange()"
(pageIndexChange)="sourceChangePageContent($event)"
>
<d-column
*ngFor="let col of columns"
[field]="col.field"
[header]="col.header"
>
</d-column>
</d-data-table>
1. 其中"pageIndexChange"不被支持,也没有分页组件;
2. 其次就是,勾选左边表格数据,点击向右箭头,把数据移动到右边,然后就发现左边表格原本分页的表格没有了分页;
3. 另外还有一个问题,就是左右穿梭箭头按钮的激活和禁用是通过那个参数控制的呢?
4. 使用配置column,勾选(全选)穿梭一次之后,穿梭按钮的禁用和激活不受勾选控制,需要多次勾选才恢复正常。
Version
14.1
Angular Version
14.1
Link to minimal reproduction
https://devui.design/14.1.0/components/zh-cn/transfer/demo#transfer-demo-custom
Step to reproduce
在自定义穿梭框demo,
What is expected
No response
What is actually happening
No response
Any additional comments (optional)
No response