Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <Form.Item style={{ margin: 0 }}>
  2. {form.getFieldDecorator(dataIndex, {
  3. rules: [
  4. {
  5. required: true,
  6. message: `${title} is required.`
  7. }
  8. ],
  9. initialValue: record[dataIndex]
  10. })(
  11. <Dropdown overlay={menu}>
  12. <span style={{ userSelect: "none" }}>hover on Me</span>
  13. </Dropdown>
  14. )}
  15. </Form.Item>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement