tetratech / baytrendsmap

Shiny app to create maps on-the-fly from output of the baytrends package.
https://tetratech.github.io/baytrendsmap/
MIT License
4 stars 2 forks source link

filter window doesn't display entered information #39

Closed jharcum closed 4 years ago

jharcum commented 4 years ago

Describe the bug

image

leppott commented 4 years ago

Column width is the issue here.

Will have to specify the column width by column number and not name. https://rstudio.github.io/DT/options.html

May need to do for only a few columns since can have different formats (user and final).

leppott commented 4 years ago

Set up default column width of "200px" in global.R.

Set up eventreactive for import and filter data tables. To check certain columns and define index values.

When generate DT check the index values above and set the width to a manual value.

OLD Column not wide enough to see entries. image

NEW Takes up more screen space but have a scroll bar. image

jharcum commented 4 years ago

done