You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current order of calling the JS files in semanticPage is causing issues for dropdown_input when you include "button" in the class. If you put the dropdown JS after the button JS script it seems to resolve the issue.
Hi,
The problem lies with same CSS and JS names. In this case the class button is a CSS class. The JS shiny-semantic-button.js is also looking for ID button. According to the order of specifying the JS files, the dropdown is first built and then it is overqritten by the button JS. Putting the button JS on top resolves this as finally the dropdown JS is overwriting it. Also if button JS is removed altogether, it will work simply because there is no JS overwriting the drodown JS.
The problem can be fixed by asking JS to find a different keyword for button.
The current order of calling the JS files in
semanticPage
is causing issues fordropdown_input
when you include"button"
in the class. If you put the dropdown JS after the button JS script it seems to resolve the issue.Example:
The text was updated successfully, but these errors were encountered: