We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone,
I've tried to insert many rows in argonTable and I found a solution which is the following:
library(argonDash) library(argonR) mtcars$car <- rownames(mtcars) paste_items <- function(row){ paste("argonTableItems(argonTableItem('", mtcars[row,"car"],"'), argonTableItem(dataCell = TRUE,", mtcars[row,"mpg"], "))", sep = "") } res <- parse(text = sapply(c(1:nrow(mtcars)), function(i) paste_items(i)))
app.R
output$argonTable <- renderUI({ wrap <- if (input$cardWrap == "Enable") TRUE else FALSE argonTable( cardWrap = wrap, headTitles = c( "CAR", "MPG" ), lapply(c(1:length(res)), function(i) eval(res[i])) ) })
However it would be nice to have multiple pages instead of a single page. Any ideas?
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everyone,
I've tried to insert many rows in argonTable and I found a solution which is the following:
app.R
I change the output by:However it would be nice to have multiple pages instead of a single page. Any ideas?
Thanks
The text was updated successfully, but these errors were encountered: