In R DT you can define the table control elements with code such as:
# only display the table, and nothing else
library(DT)
datatable(mtcars, options = list(dom = 't'))
The t
above is a DOM. The DOM element l
controls the length changing input control, basically how long your table will be. It looks like this.
This length changing input control defaults to a value of 10. How can I change this default value to 25, 100, perhaps even "All"?