Hi,
Using uiOutput (ui.r) and renderUI (server.r) I insert components dynamically but for some reason, the components are extracted from a text variable and displayed using eval(parse()).
How can i react on components inserted this way because they are not known in advance in UI.R
pseudo code:
ui.r
uiOutput("criteriaList")
server.r
output$criteriaList <- renderUI({
x <- 'textInput("ID", "LABEL", "")'
eval(parse(text=x))
})
Of course, i have reduced the real source code to pay attention to my real problem because the real source is more complexe and the variable is not so simple.
Cdts,