i've this kind of radio button :
radioButtons("test", "test:",
c("def" = "def",
"ghi" = "ghi",
"jkl" = "jkl")
But i would like to add a separator like tag$hr
to separate def from the others.
I tried to make two list like this :
radioButtons("test", "test:",
c("def" = "def"),
tag$hr ,
radioButtons("test", "test:",
c("ghi" = "ghi",
"jkl" = "jkl")
but it doesn't work.
thanks !