score:2

Accepted answer

you can get the value from a select option like snippet bellow:

handlechange(name, e) {
    this.setstate([name]: e.target.value)
  }


<select classname="ui dropdown" onclick={this.handlechange.bind(this, 'state_name_here')}>
  <option value="1">male</option>
</select>

this code works with meteor-react-semanticui


Related Query

More Query from same tag