ant-design/components/form/demo/inline-form.md

59 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title:
2016-07-31 09:53:51 +08:00
zh-CN: 平行排列
en-US: Inline form
2016-03-31 09:40:55 +08:00
---
2015-06-15 20:24:01 +08:00
2016-07-31 09:53:51 +08:00
## zh-CN
2015-11-02 16:37:40 +08:00
行内排列,常用于登录界面。
2016-07-31 09:53:51 +08:00
## en-US
Inline form is often used for login.
2016-07-31 09:53:51 +08:00
````jsx
import { Form, Input, Button, Checkbox } from 'antd';
2015-10-29 08:41:51 +08:00
const FormItem = Form.Item;
2016-01-30 19:00:56 +08:00
let Demo = React.createClass({
2015-10-25 11:35:03 +08:00
handleSubmit(e) {
e.preventDefault();
2016-07-31 09:53:51 +08:00
console.log('Received values of form:', this.props.form.getFieldsValue());
2015-10-25 11:35:03 +08:00
},
render() {
const { getFieldDecorator } = this.props.form;
2015-10-25 11:35:03 +08:00
return (
<Form inline onSubmit={this.handleSubmit}>
2015-10-29 08:41:51 +08:00
<FormItem
2016-07-31 09:53:51 +08:00
label="Account"
>
{getFieldDecorator('userName')(
<Input placeholder="Please input the account" />
)}
2015-10-29 08:41:51 +08:00
</FormItem>
<FormItem
2016-07-31 09:53:51 +08:00
label="Password"
>
{getFieldDecorator('password')(
<Input type="password" placeholder="Please input the password" />
)}
2015-10-29 08:41:51 +08:00
</FormItem>
<FormItem>
{getFieldDecorator('agreement')(
<Checkbox>Remember me</Checkbox>
)}
2015-10-29 08:41:51 +08:00
</FormItem>
2016-07-31 09:53:51 +08:00
<Button type="primary" htmlType="submit">Submit</Button>
2015-10-25 11:35:03 +08:00
</Form>
);
2016-05-11 09:32:33 +08:00
},
2015-10-25 11:35:03 +08:00
});
2016-01-30 19:00:56 +08:00
Demo = Form.create()(Demo);
ReactDOM.render(<Demo />, mountNode);
2015-06-15 20:24:01 +08:00
````