ThomasSiegmund / D3TableFilter

A table widget based on Max Guglielmi's "HTML Table Filter Generator" and D3.js
Other
65 stars 17 forks source link

Turning off filtering option #5

Closed RajarshiBhadra closed 9 years ago

RajarshiBhadra commented 9 years ago

Is there any way I can turn off the filtering option?

ThomasSiegmund commented 9 years ago

You can

d3tf(mtcars, enableTf = FALSE)
tableProps <- list(grid = FALSE) 
d3tf(mtcars,
         enableTf = TRUE,
         tableProps = tableProps
)
tableProps <- list( col_2: "none") 
d3tf(mtcars,
         enableTf = TRUE,
         tableProps = tableProps
)