You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1009 B
44 lines
1009 B
import React from 'react';
|
|
import type { InputRef } from 'antd';
|
|
import { Button, Form, Input } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [form] = Form.useForm();
|
|
const ref = React.useRef<InputRef>(null);
|
|
|
|
return (
|
|
<Form form={form} initialValues={{ list: ['light'] }} style={{ maxWidth: 600 }}>
|
|
<Form.Item name="test" label="test">
|
|
<Input ref={ref} />
|
|
</Form.Item>
|
|
|
|
<Form.List name="list">
|
|
{(fields) =>
|
|
fields.map((field) => (
|
|
<Form.Item {...field} key={field.key}>
|
|
<Input ref={ref} />
|
|
</Form.Item>
|
|
))
|
|
}
|
|
</Form.List>
|
|
|
|
<Button
|
|
htmlType="button"
|
|
onClick={() => {
|
|
form.getFieldInstance('test').focus();
|
|
}}
|
|
>
|
|
Focus Form.Item
|
|
</Button>
|
|
<Button
|
|
onClick={() => {
|
|
form.getFieldInstance(['list', 0]).focus();
|
|
}}
|
|
>
|
|
Focus Form.List
|
|
</Button>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|