Hi Aaron,
I had to build the same functionality. And this is how i did it
output$colors <- renderUI({
for(i in 1:nrow(dynamicInputs)){
textInput(dynamicInputs[i,'id'], dynamicInputs[i,'name'],dynamicInputs[i,'value'])
}
})
In other function where I wnat to get the values from the inputs
for(i in 1:nrow(dynamicInputs)){
doSomethingWithTheInputs <- input[[id]]
}
Op vrijdag 8 november 2013 02:07:29 UTC+1 schreef Aaron Horowitz: