Giter VIP home page Giter VIP logo

react-formsy-text-input-group's Introduction

react-formsy-text-input-group

Formsy component based on formsy-react-components allowing grouping multiple text inputs under a single label.

Purpose and usage

The component is intended to be used with react-formsy forms.

It uses react-formsy-components and wraps multiple Input elements from this module within a single Row element, effectively giving the inputs a common label. Since any of the inputs may or may not be required, required prop is not set for the Row element, which means the common label will never have a * denoting a required field.

The component takes the same props as react-formsy-components Input except type and required as default props for all the inputs in the group. Number of inputs and individual props are provided as inputProps prop which is expected in the form of an array of objects, each object representing props of one input.

An empty input props object will render an Input component with default props, but in practice you will need at least a unique name to have your Input function properly within a formsy-react Form component.

To install, simply:

npm install --save react-formsy-text-input-group

Example

import TextInputGroup from 'react-formsy-text-input-group';

const inputProps = [
    {name: "first_name", placeholder: "Enter contact person first name", required: true},
    {name: "last_name", placeholder: "Enter contact person last name", required: true},
    {name: "middle_name", placeholder: "Enter contact person first name (optional)"},
];

const form = (
    <Form className="form-inline" onValidSubmit={(data) => {console.log('submitted', data)}}>
        <TextInputGroup label="Contact person" layout="vertical" inputProps={inputProps} />
        <button type="submit" className="btn btn-default">Submit</button>
    </Form>
);

react-formsy-text-input-group's People

Contributors

milosrasic avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

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.