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
How can I label aDB[2]?
Do you mean something like this?
r, shiny, selectize.js
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!
system
Closed
September 17, 2021, 8:03am
4
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.