How do I get the value for a color picker in R Shiny?
In my Shiny app I am trying to get the value from a color picker. Using shinyjs::onevent
I can get and put the value in the input control but when I am pressing the save button (which triggers the onclick
event), I am receiving just “null” or an empty value from the input control. Why input[['titleColorChart']]
gives me “null” or empty instead of the right value?
How do I get the value for a color picker in ShinyR?
In my ShinyR APP I am trying to get value from color picker. Using onevent I can get and put value in input control but when I am pressing save button (which triggers onclick event), I am receiving just “null” or empty value from the input control. Why input[['titleColorChart']]
gives me “null” or empty instead of right value.