# NOT RUN {
reactable(
iris[1:30, ],
searchable = TRUE,
paginationType = "simple",
language = reactableLang(
searchPlaceholder = "Search...",
noData = "No entries found",
pageInfo = "{rowStart}\u2013{rowEnd} of {rows} entries",
pagePrevious = "\u276e",
pageNext = "\u276f",
# Accessible labels for assistive technology, such as screen readers
pagePreviousLabel = "Previous page",
pageNextLabel = "Next page"
)
)
# Set the default language for all tables
options(reactable.language = reactableLang(
searchPlaceholder = "Search...",
noData = "No entries found",
pageInfo = "{rowStart} to {rowEnd} of {rows} entries"
))
reactable(iris[1:30, ], searchable = TRUE)
# }
Run the code above in your browser using DataLab