Is there some way to transfer custom attributes to the event handler?
Maybe as a second parameter?
<Select ... onChange={ this.onChangeSelect(selectedOption, customArgument) } ... />
But therefore I need some expression for selectedOption to not lose it when the event is called.
Maybe it could be the normal behavior to submit the content of inputProps as second argument to the event handler.