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
It seems that currently, if one uses a file gene list, clicking reset and providing a list through the text bar, the search is still performed on the file gene list. Ideally file should be removable without refreshing the session
The text was updated successfully, but these errors were encountered:
Great catch. In the past, I've skirted around R Shiny's poor support (or maybe my lack of understanding of their support) for file uploads by:
Changing the fileInput UI element to a uiInput element
Dynamically adding the fileInput on application launch in server.R
Removing and re-adding a new fileInput on reset button clicked
This has worked for me when "hard" resets are necessary, but you can also probably get around it by having a session variable tracking whether to use the uploaded file or not (setting to FALSE on reset click, and TRUE on upload)
It seems that currently, if one uses a file gene list, clicking reset and providing a list through the text bar, the search is still performed on the file gene list. Ideally file should be removable without refreshing the session
The text was updated successfully, but these errors were encountered: