Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

select html react

import React, { useState } from 'react'


const ANIMALS = ['Dog', 'Cat', 'Lion', 'Elephant'];

export const Example = ()=>{
const [animal, setAnimal] = useState("");


return (
<div>
  <form>
    <label htmlFor="animal">
    Animal: 
      <select
          id="animal"
          value={animal}
          onChange={(e)=>{setAnimal(e.target.value)}}
        >
        <option>Select Option ... </option>
        
      	{ANIMALS.map((animal)=>(
        <option key={animal}>{animal}</option>
        ))
        }
      </select>
    </label>
  </form>
</div>
)
}
Comment

select in react js

import React, { useState } from 'react'

export const FruitSelectDropdown = () => {
  const [currentFruit, setCurrentFruit] = useState('oranges')
  
  const changeFruit = (newFruit) => {
    setCurrentFruit(newFruit)
  }
  
  return (
    <form>
      <select 
        onChange={(event) => changeFruit(event.target.value)}
        value={currentFruit}
      >
        <option value="apples">Red Apples</option>
        <option value="oranges">Outrageous Oranges</option>
        <option value="tomatoes">Technically a Fruit Tomatoes</option>
        <option value="bananas">Bodacious Bananas</option>
      </select>
    </form>
  )
}
Comment

react select options

import React, { Component } from 'react'
import Select from 'react-select'

const options = [
  { value: 'chocolate', label: 'Chocolate' },
  { value: 'strawberry', label: 'Strawberry' },
  { value: 'vanilla', label: 'Vanilla' }
]

const MyComponent = () => (
  <Select options={options} />
)
Comment

react select

import React from 'react'
import Select from 'react-select'

const options = [
  { value: 'chocolate', label: 'Chocolate' },
  { value: 'strawberry', label: 'Strawberry' },
  { value: 'vanilla', label: 'Vanilla' }
]

const MyComponent = () => (
  <Select options={options} />
)
Comment

html select react

class FlavorForm extends React.Component {
  constructor(props) {
    super(props);
    this.state = {value: 'coconut'};
    this.handleChange = this.handleChange.bind(this);
    this.handleSubmit = this.handleSubmit.bind(this);
  }

  handleChange(event) {    this.setState({value: event.target.value});  }
  handleSubmit(event) {
    alert('Your favorite flavor is: ' + this.state.value);
    event.preventDefault();
  }

  render() {
    return (
      <form onSubmit={this.handleSubmit}>
        <label>
          Pick your favorite flavor:
          <select value={this.state.value} onChange={this.handleChange}>            <option value="grapefruit">Grapefruit</option>
            <option value="lime">Lime</option>
            <option value="coconut">Coconut</option>
            <option value="mango">Mango</option>
          </select>
        </label>
        <input type="submit" value="Submit" />
      </form>
    );
  }
}
Comment

react select

import React, { Component } from 'react'
import Select from 'react-select'

const options = [
  { value: 'vanilla', label: 'Chocolate' },
  { value: 'vanilla', label: 'Strawberry' },
  { value: 'vanilla', label: 'Vanilla' }
]

const MyComponent = () => (
  <Select options={options} />
)
Comment

REACT SELECT DROPDOWN

const [tags, setTags] = useState([])
const [tagsData, setTagsData] = useState([]);

useEffect(() => {
        (async () => {
            const { data } = await axios(`${process.env.REACT_APP_API_URL}/tag`);
            setTagsData(data);
            setTags([data[0]]);
        })();
    }, []);

<Select
    id="react-select-tag"
    isMulti
    options={tagsData}
    hideSelectedOptions={false}
    getOptionLabel={(option) => option.content_tag}
    getOptionValue={(option) => option.id} // using id as it is unique
    value={tags}
    onChange={(selected) => setTags(selected)}
/>
Comment

react select options

yarn add react-select
Comment

react select

npm i --save react-select // with npm
Comment

react select

inputValue: "uuuuu"
Comment

PREVIOUS NEXT
Code Example
Javascript :: package.json tilde vs caret 
Javascript :: javascript clear interval 
Javascript :: jquery datatable iterate all rows 
Javascript :: mongo query by object id node js 
Javascript :: get number from range line js 
Javascript :: how to test usestate in jest 
Javascript :: ionic angular change page route 
Javascript :: javascript remove all style values in div 
Javascript :: list methods of object js 
Javascript :: trigger send parameter 
Javascript :: jquery reset form fields 
Javascript :: spring rest api cors error in react app 
Javascript :: javascript foreach array of object get value by key 
Javascript :: Parcel, how to fix the `regeneratorRuntime is not defined` error 
Javascript :: get cookie javascript 
Javascript :: vuetify change text color of radio button 
Javascript :: javascript seconds to date 
Javascript :: HashLocationStrategy 
Javascript :: run function every second javascript 
Javascript :: how to get current date in react js 
Javascript :: first duplicate javascript 
Javascript :: jquery selector checked 
Javascript :: jquery search for string in text 
Javascript :: transitionduration js 
Javascript :: javascript if field exists 
Javascript :: json rename key 
Javascript :: react native position text in center of view 
Javascript :: how you can use javascript to play the sound for the button color selected 
Javascript :: add multiple class list at once in js 
Javascript :: scroll to section react 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =