0
votes
2answers
106 views

Best aesthetically solution to overflowing data in a table

I have the following table which I created as follows: <html> <head> <style type="text/css"> html { background-color: #fff; } body{ text-align:center; } ...
5
votes
2answers
454 views

UX for filtering a table of data

I have a table of data that can be filtered by name, location or status. The data of each of these columns will be obvious to the administrators of the Portal (i.e that the first column is child's ...
4
votes
1answer
101 views

How to add a details link on a table when each cell is already a link?

I have a table on which each cell is already a link to a different section (eg. the row contains 'Name', 'Location' and 'Type' columns and clicking the name cell takes you to the Show action of that ...
5
votes
3answers
157 views

Should a table's head label eventual buttons?

Should a table's head (i.e html <thead>) include the label for eventual buttons or actions? Consider the following examples. Example one, with label (notice "Modify" in the head) Example two, ...
2
votes
3answers
252 views

how to provide a good user experience for drilldown/click on a grid to external divs

My interface has a table (a nice, sortable table with 3 or 4 columns), which represents the summary of some data. Each row represents an important piece of data. At the moment if users click on a row ...
3
votes
3answers
612 views

Best way to show and sort by dates when the item may be repeating/recurring?

Currently this website has a list of FooBars, which may be sorted by date: I am adding functionality to allow a FooBar to be repeated, or a recurring FooBar e.g. Weekly on Mondays and Tuesdays ...
3
votes
4answers
703 views

How do I make a table row on a web page look clickable?

I have a simple web-based report presented as a table: Some rows are clickable, others are not (it can be seen with the third column. Greater than 0 means the row can be clicked and expanded in a ...
4
votes
3answers
164 views

Quickly change row status

I have a table of items that each have a particular status color icon. The users will need a quick method to change this status. I imagine click on the status icon an picking the new status. However, ...