question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

version 1.1.0. When click right arrow open dropdown list , it can't close through click not select area.

See original GitHub issue

`import ‘react-select/dist/react-select.min.css’;

import React, { PureComponent } from ‘react’;

import Select from ‘react-select’; import autoBind from ‘react-autobind’; import classNames from ‘classnames/bind’;

const loadOptions = [ { value: 1, label: ‘john test1’ }, { value: 2, label: ‘john test2’ }, ];

class CustomSelect extends PureComponent { constructor() { super(); autoBind(this); this.state = { selectedProduct: 1 } }

handleProductChanged(value) { this.setState({ selectedProduct: value }) }

render() { return ( <div style={{width: 200}}> <Select value={this.state.selectedProduct} simpleValue onChange={this.handleProductChanged} options={loadOptions} /> </div> ); } }

export default CustomSelect;`

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:3
  • Comments:8 (2 by maintainers)

github_iconTop GitHub Comments

3reactions
Pixelatexcommented, Dec 21, 2017

so, any idea when this release will be coming?

3reactions
ghostcommented, Dec 20, 2017

@Kerumen so it seems we are waiting for fix @JedWatson

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to close react-select input when user clicks outside of the ...
I'm creating a select input using react-select version 1.1.0. After I click the right-arrow to open the dropdown list, it doesn't close when ......
Read more >
Cant click on drop down arrow - Microsoft Community Hub
In some cases, the arrow of drop down list disappears because the option called In-cell dropdown is not checked. Select the drop down...
Read more >
Video: Drop-down list settings - Microsoft Support
Training: You can use a comma-delimited list, a cell range, or a named range to define the options in a drop-down list. This...
Read more >
Angular directives for Bootstrap - AngularUI
The accordion directive builds on top of the collapse directive to provide a list of items, with collapsible bodies that are collapsed or...
Read more >
PySimpleGUI
If you are running the tkinter version of PySimpleGUI, you will not need to ... input values (what button they clicked, what was...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found