-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Server-side updateSelectizeInput Fails for Internet Exporer and Edge Browsers #1257
Comments
I am having the exact same issue. Here is my reproducible code. Works fine on Chrome. IE11 is standard browser across my Enterprise, and my app does not work for any of my users. Appreciate any workaround or fix.
|
Does this occur with the latest CRAN version of Shiny? |
Yes, I just installed it from CRAN and it is reproducible. The drop down list just does not change. Sticks with the original selection list (upper case in this case).
|
Some notes:
Here's the smallest chunk of code that produces this problem: library(shiny)
ui <- fluidPage(selectInput('mylist', 'Select Something', choices = NULL))
server <- function(input, output, session) {
updateSelectInput(session, 'mylist', choices = c("a", "b", "c"))
}
shinyApp(ui = ui, server = server) The choices are never updated -- the problem is with |
I think we should move the priority down on this bug. I'm still working on trying to fix it, but this does not occur for the latest version of IE11. After discovering this, I looked into @jcheng5, @wch, what do we do here? We could drop this since it clearly is a bug in IE that has been fixed in the latest version. Or we could try to create some work around that does not use |
@gopalatumuluri, thanks for the info. The situation actually looks less dire than I previously thought. If all goes well, we should have a fix in |
I wish Internet Explorer didn't use so many digits in its version ID. I'd suggest that Barbara submit a bug report to |
This should be fixed now. Let me know if either of you still encounter any problems. |
When
updateSelectizeInput
is used to change the list of choices, it doesn't work if I use Microsoft-developed browsers. The same Shiny application works in Opera 38, for example. It also works in the Microsoft=developed browsers ifserver
is set toFALSE
.Will the cross-browser compatibility of Shiny be improved?
The text was updated successfully, but these errors were encountered: