-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Guidelines
- I agree to follow this project's Contributing Guidelines.
Project Version
0.2.0
Platform and OS Version
Trien in windows and linux
Existing Issues
No response
What happened?
While sorting a server side rendered table I noticed that it only sorts for the current page shown in the browser
Steps to reproduce
library(shiny)
library(reactable)
library(reactable.extras)
ui <- fluidPage(
reactable_extras_ui("test")
)
server <- function(input, output, server) {
reactable_extras_server(
"test",
data = iris,
total_pages = ceiling(nrow(iris)/10)
)
}
shinyApp(ui, server)- Run code snippet
- Sort on any column
...
Expected behavior
The table should be sorted based on the whole content of the column
Attachments
No response
Screenshots or Videos
Grabacion.2024-06-10.113905.mp4
Additional Information
No response
barnesparker and Andryasfilipwastberg
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working