-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🧐[问题] 如何在 EditableProTable或者ProTable中使用 antd
Table 的 table ref
?
#7893
Comments
antd
Table 的 table ref
?antd
Table 的 table ref
?
antd
Table 的 table ref
?antd
Table 的 table ref
?
#4509 |
遇到了同样的问题, |
在 import { ProColumns, ActionType } from '@ant-design/pro-table';
import { useRef } from 'react';
const columns: ProColumns<API.CurrentUser>[] = [
{
title: '姓名',
dataIndex: 'name',
hideInSearch: true,
},
];
const actionRef = useRef<ActionType>();
export default <ProTable actionRef={actionRef} />; 然后,你就可以通过 请注意, 如果是table本身的 dom,推荐使用 id 来设置。 |
|
遇到了同样的问题 |
🧐 问题描述
我将
pro-components
内置的antd
版本指定为 5.11.0,并启用了虚拟化功能。在尝试使用EditableProTable
与ProTable
提供的actionRef
时,发现没有类似于table ref
中的scrollTo
方法可用。我还尝试直接注入一个 ref,希望能够实现目标,但实际上这个 ref 似乎并没有被成功注入到Table
组件的 ref 上。请问有什么方法可以解决这个问题吗?非常感谢!
The text was updated successfully, but these errors were encountered: