Git Product home page Git Product logo

Comments (6)

supnate avatar supnate commented on July 18, 2024

I can't see the code. Please paste it here.

from antd-form-builder.

nttdocomo avatar nttdocomo commented on July 18, 2024

I can't see the code. Please paste it here.

I have update the link.

or if the username is not required, when i remove it, the form values console result container the username value

import React, { useState } from "react";
import { Form, Button } from "antd";
import FormBuilder from "antd-form-builder";

export default Form.create()(({ form }) => {
  const handleSubmit = e => {
    e.preventDefault();
    form.validateFields((err, values) => {
      if (!err) {
        console.log("Received values of form: ", values);
      }
    });
  };
  const [fields, setFields] = useState([
    {
      key: "username",
      label: "User Name",
      rules: [
        {
          required: true
        }
      ]
    },
    { key: "password", label: "Password", widget: "password" }
  ]);

  return (
    <Form onSubmit={handleSubmit}>
      <FormBuilder
        meta={{
          fields
        }}
        form={form}
      />
      <Form.Item wrapperCol={{ span: 16, offset: 8 }}>
        <Button type="primary" htmlType="submit">
          Log in
        </Button>
      </Form.Item>
      <Button
        onClick={() => {
          setFields([
            { key: "password", label: "Password", widget: "password" }
          ]);
        }}
      >
        remove
      </Button>
    </Form>
  );
});
import React, { useCallback } from "react";
import { Form, Button } from "antd";
import FormBuilder from "antd-form-builder";

export default Form.create()(({ form }) => {
  const handleSubmit = useCallback(
    evt => {
      evt.preventDefault();
      form.validateFields((err, values) => {
        if (!err) {
          console.log("Received values of form: ", values);
        }
      });
    },
    [form]
  );

  const meta = [
    {
      key: "favoriteFruit",
      label: "Favorite Fruit",
      widget: "radio-group",
      options: ["Apple", "Orange", "Other"],
      initialValue: "Apple"
    }
  ];

  // Push other input if choose others
  if (form.getFieldValue("favoriteFruit") === "Other") {
    meta.push({
      key: "otherFruit",
      label: "Other",
      rules: [
        {
          required: true
        }
      ]
    });
  }

  return (
    <Form onSubmit={handleSubmit}>
      <FormBuilder meta={meta} form={form} />
      <Form.Item wrapperCol={{ span: 16, offset: 8 }}>
        <Button type="primary" htmlType="submit">
          Submit
        </Button>
      </Form.Item>
    </Form>
  );
});

in the Dynamic Fields, you can see the console. even if the otherFruit field is removed, you can also see it's value when submit

preserve: true, // by default, preserve the value

I think I got the answer, because the preserve: true, in the antd preserve default value is not true. but in antd-form-builder it default true. so I think it has to be the same as antd.

from antd-form-builder.

supnate avatar supnate commented on July 18, 2024

Yes, this is by design. Because in wizard, we don't want to set preserve to true for every field.

from antd-form-builder.

supnate avatar supnate commented on July 18, 2024

Maybe we need to revisit this design. Sorry for the confusion.

from antd-form-builder.

supnate avatar supnate commented on July 18, 2024

Added highlighted notes in readme for the difference of default value of preserve and validateFirst, rather than changing the API.

from antd-form-builder.

supnate avatar supnate commented on July 18, 2024

Final update: the preserve and validateFirst default value is changed to false to be consistent with antd. Just released in 1.1.0.

from antd-form-builder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.