R shiny updateSelectizeInput custom HTML tags for labels
问题 Is there a way to use HTML tags (e.g. h6) for updateSelectizeInput (which is working for selectInput, see code below)? With the code below simply using h6("Label") in the updateSelectizeInput [object Object] is shown as output. rm(list = ls()) library(shiny) ui =fluidPage( selectizeInput('DropDownSelectize',choices=NULL,label=""), selectInput('DropDownSelect',choices = c("choice1","choice2","choice3"), label=h6("Label")) ) server = function(input, output, session) { observe({