You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can't figure out how to remove the first column from the grid that has the row indexes. There is no label for this column, so I cannot access it programmatically using colOpts.
library(shiny)
library(RagGrid)
ui <- shinyUI(fluidPage(
title = 'Use the RagGrid package in shiny',
fluidRow(
column(2),
column(8, RagGrid::RagGridOutput('tbl1')),
column(2)
)
))
server <- shinyServer(function(input, output, session) {
output$tbl1 <- renderRagGrid(aggrid(iris))
})
shinyApp(ui = ui, server = server)
The text was updated successfully, but these errors were encountered:
Can't figure out how to remove the first column from the grid that has the row indexes. There is no label for this column, so I cannot access it programmatically using colOpts.
The text was updated successfully, but these errors were encountered: