-
Notifications
You must be signed in to change notification settings - Fork 224
Dropdown bug fixing #662
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dropdown bug fixing #662
Conversation
|
Solved the issue with the dropdown not appearing until scrolled - I was using an old library. A clean reinstall fixed the issue. |
|
|
||
| {{example:components/dropdown/content.py:dropdown}} | ||
|
|
||
| ## AutoClose |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This property doesn't appear to be working.
Fixing it will likely introduce a breaking change because currently dismissal of the dropdown menu is controlled by the toggle prop of each DropdownMenuItem.
I think the auto_close interface is nicer, but not backwards compatible so... 🤷♂️
* Updated to use react-bootstrap props * Update dropdown alignment examples * Add dropdown autoclose examples * Add dark dropdown examples * Update dropdown direction examples * Update dropdown docs for new/amended examples * Format * Fixed dropdown in button group * Remove new auto_close prop in dropdown Co-authored-by: tcbegley <tomcbegley@gmail.com>
* Updated to use react-bootstrap props * Update dropdown alignment examples * Add dropdown autoclose examples * Add dark dropdown examples * Update dropdown direction examples * Update dropdown docs for new/amended examples * Format * Fixed dropdown in button group * Remove new auto_close prop in dropdown Co-authored-by: tcbegley <tomcbegley@gmail.com>
A number of bugs were identified in #651 about the dropdown. I have fixed a number of them where the props changed in the move to react-bootstrap and these are now working. However, there is a fundamental issue with the component I am unable to solve which means that the menu doesn't appear until the mouse is scrolled. Once this has been fixed, then the other issues, including those relating to the nav drop downs, should also be fixed.