I want to put a label description box on the selectizeinput.

my code is

selectizeInput("SelectActor", "Search actor Code", choices = c(aDB[3])
, selected = NULL, multiple = FALSE, options = NULL)
)),

but i want this
ex)
aDB
price name code
10 Apple 232
11 Banana 333
9 Orange 212

ex

How can I label aDB[2]?

Do you mean something like this?

It's similar, but I want one label for each item.
choices = aDB[3], label = aDB[2]
aDB[3] : aDB[2]
232 : Apple
333 : Banana
212 : Orange
.
.
.
like this
It's close to here. thnaks!

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.