shiny (version 0.8.0)

renderDataTable: Table output with the JavaScript library DataTables

Description

Makes a reactive version of the given function that returns a data frame (or matrix), which will be rendered with the DataTables library. Paging, searching, filtering, and sorting can be done on the R side using Shiny as the server infrastructure.

Usage

renderDataTable(expr, options = NULL, searchDelay = 500,
    env = parent.frame(), quoted = FALSE)

Arguments

expr
An expression that returns a data frame or a matrix.
options
A list of initialization options to be passed to DataTables.
searchDelay
The delay for searching, in milliseconds (to avoid too frequent search requests).
env
The environment in which to evaluate expr.
quoted
Is expr a quoted expression (with quote())? This is useful if you want to save an expression in a variable.

References

http://datatables.net