Skip to content

Commit 8b0aabc

Browse files
committed
Update Readme
1 parent 0d3d504 commit 8b0aabc

2 files changed

Lines changed: 31 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- badges: start -->
66
[![CRAN status](https://www.r-pkg.org/badges/version/reactable.extras)](https://cran.r-project.org/package=reactable.extras)
77
[![R-CMD-check](https://github.com/Appsilon/reactable.extras/workflows/R-CMD-check/badge.svg)](https://github.com/Appsilon/reactable.extras/actions/workflows/main.yml)
8-
[![Codecov test coverage](https://codecov.io/gh/Appsilon/reactable.extras/branch/main/graph/badge.svg)
8+
![Codecov test coverage](https://codecov.io/gh/Appsilon/reactable.extras/branch/main/graph/badge.svg)
99
<!-- badges: end -->
1010

1111
`reactable.extras` is an R package that enhances the functionality of the `reactable` package in Shiny applications. Reactable tables are interactive customizable, and `reactable.extras` extend their capabilities, allowing you to create dynamic and interactive data tables with ease.

vignettes/tutorial/server-side-processing.rmd

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,33 @@ shinyApp(
8080
Server-Side Processing | Rendering All Data At Once
8181
:--------------------------------------:|:-----------------------------------:
8282
![](images/server-side-processing.gif) | ![](images/full-data-rendered.gif)
83+
84+
85+
86+
87+
You can Also use server side processing with custom inputs
88+
89+
```r
90+
shinyApp(
91+
reactable_extras_ui("test"),
92+
function(input, output, server) {
93+
reactable_extras_server(
94+
"test",
95+
filterable = TRUE,
96+
searchable = TRUE,
97+
selection = "multiple",
98+
data = mtcars_ultra,
99+
columns = list(
100+
mpg = colDef(name = "Miles per Gallon"),
101+
cyl = colDef(name = "Cylinders"),
102+
disp = colDef(
103+
name = "Displacement",
104+
cell = button_extra("button")
105+
)
106+
),
107+
total_pages = 4e4
108+
)
109+
}
110+
)
111+
```
112+
[](images/server-side-processing.gif)

0 commit comments

Comments
 (0)