Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upupdateMultiInput doesn't support UTF-8 characters #232
Comments
|
Hello, devtools::install_github("dreamRs/shinyWidgets")Victor |
|
Closing this, I'm preparing an update, but can't guarantee when. Victor |
|
I have the same problem with |

When CREATE multiInput() it work fine with unicode characters. But when you UPDATE using updateMultiInput() it won't support unicode characters.
Create:

multiInput("testMultiInput", label = "Select Items", choices = c("小田", "若土"))Evidence:
Multi Input show all Japanese characters
Update:

updateMultiInput(session, "testMultiInput", choices = c("123小田abc", "123若土def"))Evidence:
Multi Input remove all Japanese characters
As I have checked, other input have same issue.