Applies pagination, sorting, and filtering from DataGridServer
parameters to a data.frame. Use inside renderReact() with
input$<inputId> to get the current page of data.
Value
A list with rows (data.frame for the current page) and
rowCount (integer, total matching rows).
Examples
if (FALSE) { # \dontrun{
output$grid <- renderReact({
result <- processGridParams(my_data, input$grid_params)
DataGridServer("grid_params", rows = result$rows, rowCount = result$rowCount)
})
} # }