Create InputField, SelectField, and TextAreaField within new form components
See original GitHub issueIssue Description
To help facilitate the migration of terra-form to multiple form packages and promote accessible form fields, we should provide InputField, NumberField, SelectField, and TextAreaField with the new form components.
These would be available as follows:
import InputField from 'terra-form-input/lib/InputField';
import NumberField from 'terra-form-number/lib/NumberField';
import SelectField from 'terra-form-select/lib/SelectField';
import TextAreaField from 'terra-form-select/lib/TextAreaField';
Issue Type
- New Feature
- Enhancement
- Bug
- Other
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
Fields — WTForms Documentation (2.3.x) - Read the Docs
The data on the SelectMultipleField is stored as a list of objects, each of which is checked and coerced from the form input....
Read more >Chapter 18 Forms and Form Fields - Eloquent JavaScript
Fields created by <input> tags with a type of text or password , as well as textarea tags, share a common interface. Their...
Read more >Forms - React
An input form element whose value is controlled by React in this way is called a “controlled component”. For example, if we want...
Read more >HTML Form Elements - W3Schools
This chapter describes all the different HTML form elements. ... The <input> element can be displayed in several ways, depending on the type...
Read more >Using button to add fields with text and choice in WTForms in ...
First - black - regular html form with html validation - thanks to ... textarea{ margin: 10px} form, input, select, textarea, button, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
+1 on tech design. Yes I think
SelectField
would be a wrapper around the new multi-select component.JIRA created