How to fix left most column using FixedHeader (R shiny)??

How to fix left most column using FixedHeader (R shiny)??

leessleess Posts: 1Questions: 1Answers: 0

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

  • allanallan Posts: 61,864Questions: 1Answers: 10,136 Site admin

    There is no option to fix a column using FixedHeader I'm afraid. It does header and footer only.

    Allan

This discussion has been closed.