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
shinyfeedback can be used to highlight mandatory and optional fields.
However the respective package to do so messes up the format of bs4Dash horribly.
Thus currently running on a backup solution.
This code for example does not work.
shiny::observeEvent(input$studyname, {
if(input$studyname=="") {
shinyFeedback::showFeedback(
"studyname",
text = "This field is mandatory",
color = "#d9534f",
icon = shiny::icon("exclamation-sign", lib="glyphicon")
)
} else {
shinyFeedback::hideFeedback("studyname")
}
})
The text was updated successfully, but these errors were encountered:
Layout issues seem to popup only when condition is true during initialization.
Feedback now only added in response to added estimates for selected fields...
shinyfeedback
can be used to highlight mandatory and optional fields.However the respective package to do so messes up the format of
bs4Dash
horribly.Thus currently running on a backup solution.
This code for example does not work.
The text was updated successfully, but these errors were encountered: