Hi good day,have been trying to get only a datatable to show my information without filters, search boxes or such, but when I use options = list(dom = 't') to achieve it I still get a "FALSE" word on the top row where the titles for each column should be.
my code:
output$tableDT7= DT::renderDataTable({
datatable(VarPrecio(),
rownames = T,
colnames = F,
options = list(dom = 't')
)%>%
formatPercentage(1:5, 2)
})
thanks a lot