danish1658 / react-native-dropdown-select-list

☝️ React Native Select List Equivalent to Html's Select with options"
https://www.npmjs.com/package/react-native-dropdown-select-list
MIT License
200 stars 89 forks source link

How to reset to unselected #36

Closed RadAd closed 1 year ago

RadAd commented 1 year ago

I have two select-lists. The second is populated depending on the selection in the first.

How do I clear the selection of the second list when the selection of the first list is changed? Setting defaultOption to undefined does not clear the selection.

danish1658 commented 1 year ago

https://youtu.be/brZDOAxc3BI

RadAd commented 1 year ago

That video didn't show the question I was asking. I guess it can't be done.

RadAd commented 1 year ago

I found out that if I set the defaultOption to { key: null, value: "" } I get the result I wanted.