I want to have the paging displayed at the bottom left side of the table and found that in JS, the DT layout option seems to do exactly that. However, I haven’t found a way to use in R nor someone asking about it.
Here is the desired output (edited with GIMP) :
Here is my attempt at reproducing it with the layout
option :
library(DT)
datatable(
iris,
options = list(
layout = list(
topStart = "pageLength",
bottomStart = "info",
bottom2Start = "paging"
)
)
)