How to fix left most column using FixedHeader (R shiny)??
How to fix left most column using FixedHeader (R shiny)??
I want my table to have a fixed header and fixed left most column. I have fixed the header using R studio :
data}
,extensions = c('TableTools','FixedHeader'), rownames=FALSE),
options = list( pageLength = 2000)
How do I also fix the left most column?
When I use this code it works but adding 'Fixedheader' does not allow both to work together:
data
},extensions = c('TableTools', 'FixedColumns')
, rownames=FALSE,
options = list(pageLength = 200, fixedColumns= list(leftColumns = 1))
Answers
There is no option to fix a column using FixedHeader I'm afraid. It does header and footer only.
Allan