react-semantify icon indicating copy to clipboard operation
react-semantify copied to clipboard

Select element in Form collection

Open hlehmann opened this issue 9 years ago • 1 comments

dropdown should also apply to select

 <select class="ui search dropdown">
      <option value="">Select Country</option>
      <option value="AF">Afghanistan</option>

with init

$('select.dropdown')
  .dropdown()
;

http://semantic-ui.com/collections/form.html#dropdown

hlehmann avatar Aug 03 '16 01:08 hlehmann

In fact what I'm looking for is the ability to use a dropdown as a controlled input in the react with two new props :

  • value
  • onChange

https://facebook.github.io/react/docs/forms.html#controlled-components

hlehmann avatar Aug 03 '16 08:08 hlehmann