react-selectize
react-selectize copied to clipboard
When clicking on the scrollbar on IE10+ and then outside the dropdown don't hide. There is handling for it in the code, but it doesn't work. _This can be reproduced...
Given the following imports: import React, { PropTypes, Component } from 'react' import SimpleSelect from 'react-selectize' import '../../node_modules/react-selectize/themes/index.css' and MyComponent render's method as follows: return ( A B ); I...
UPDATE: on my screen at home I do see a faint background color for the highlighted item. Is there a css class that I can set to change the colour?...
I'm seeing an issue in my app with up/down arrow not scrolling items into view. I am also able to reproduce it with the **Create from search** example on the...
Hello, i noticed that is actually hard to update the default value due to subsequent calls. Example: i create the SimpleSelect component with a defaultValue={label: "a", value: 1} Now, due...
Added the ability to pass a maxLength attribute so the length of the input in SimpleSelect can be limited.
Hello everyone, Do you have any idea to achieve the form reset once submitted with remote data loading? I am currently using react-selectize with single selection and remote data loading....
As I understood in ver `2.1.0` new prop `onBlurResetsInput` has been introduced to `SimpleSelect` (https://github.com/furqanZafar/react-selectize/pull/102), thanks for that!!! It would be super cool if there will be same prop for...
Update ----- According to https://facebook.github.io/react/docs/refs-and-the-dom.html#legacy-api-string-refs, this might be causing errors with newer versions of React... Is there a way to provide a refact of these sample? Problem ----- Looking at...