Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Strategy to display very wide table [closed]

I have a table that has 23 columns of data in it that I need to display. It's obviously unreasonably wide, and I am looking for a strategy to make it a little bit more manageable for my users.

like image 986
just.another.programmer Avatar asked Feb 19 '12 13:02

just.another.programmer


1 Answers

That sounds like it would be better off just making the data available as CSV so that users can download it and read it in their favorite spreadsheet program. I know from experience that nothing made our users(1) happier (with one notable exception) than when we added this option in, and it's really quite easy to do. (Yeah, putting everything in a slick web interface is a nice goal, but sometimes you get better results by not working nearly so hard.)


(1) Our users are scientists. Physicists, in particular, but I'm told that biologists are the same. Your users might be different; check!

like image 190
Donal Fellows Avatar answered Oct 06 '22 01:10

Donal Fellows