2
votes
3answers
161 views

I have a large list (100+) of items to be listed on a landing page. What's the best way to do this?

As the title suggests, I need to list over 100 items on a landing page. I'm hoping to make the page as responsive as possible. I don't think a table is the best option, and I'd also like to stay ...
4
votes
3answers
87 views

Fixed items on table list - how should I paginate it?

I have a table list that consists of two areas: The top area has 'new' items which require attention and action from the user. It is important that these are noticed. The other area includes the ...
0
votes
2answers
95 views

What is a good way to display a ranked list in a table cell?

I have a set of metrics to fill each row of a table. And each metric has some factors, usually, there are about 10-20 factors for one metric and they are ranked by their importance as well. Now I ...
3
votes
4answers
126 views

Better to Show Empty List or Default List?

This is a web application for people to manage a large database of stuff. When the user clicks on the a button/link to "View Their List of Stuff", is it better to present them with a populated list or ...
10
votes
4answers
175 views

What should happen when I add a Row to a paginated, sorted list

A user wants to add an item on a sorted and paginated List. If we keep the list sorted, the item might be on another page than we're viewing and if we just add it to the top of the list it will break ...
4
votes
4answers
283 views

Best way to show long list of detailed information for summarized items in a table?

I'm working on an application page for an insurance company regarding purchasing policies and showing all the detailed information that comes with the policy. The problem I'm facing is knowing how ...
2
votes
1answer
49 views

showing list of sorted contacts when some contacts don't have names

I'm showing the user a list of customer records. It can happen that for some records the user created a new customer but didn't enter a full customer name or a company name. When I'm showing the list ...
1
vote
1answer
134 views

Displaying Lists on Web and Mobile

I need to show a list of items - some thing like browse all the records on the web and mobile. Basically its a list of startups and information about the same. this is a basic version i have come ...
6
votes
2answers
193 views

Should table rows be numbered?

I've created a a form that generate a list of results in a table. I'd to know if it's interesting to number each row of table, the default number of row is 20. there is a pagination too. 20 results ...
2
votes
2answers
124 views

context menus within a collection

Here's something I come across fairly frequently: A large collection (list or table) of items serves as an overview, displaying only the name of each individual item (with a link to the respective ...
6
votes
2answers
302 views

When is a table the proper way to present data?

UPDATE: added mockups We are in the process of designing a web application interface for administering an online store. In such an interface there are pages for managing products, orders, customers, ...
5
votes
3answers
224 views

Identifying multiple sort criteria

I have a table view with some data and I'm allowing users to sort on multiple columns. I wonder what are the options for indicating sorting precedence? The obvious is to display a number right ...
0
votes
2answers
350 views

What's an alternative to data tables for key/value pairs?

I have a list of 8 key/value pairs I'm displaying in a sidebar using a table element. I'm using a th and td element on each row. However, the td content is often too long and has to be truncated. I ...
8
votes
4answers
482 views

How to correctly encode a leaderboard with a gap in HTML

I want to display a leaderboard like so: 1 - John 232342 2 - Mary 45234 3 - Luke 234 59 - You 45 It's an ordered list but I can't make an ordered list that jumps from 3 to an arbitrary ...
0
votes
3answers
293 views

A way to denote possibility of multiple selection in table view

I'm creating an OS X app and during it's setup (the very first launch) I need user to select a few entries from a list (a one-columned table). Usually on OS X user is able to select a single line from ...
7
votes
2answers
720 views

What is the best way to display edit/delete actions on a row?

I am building a web application that deals with a lot of tables/lists of records. I am currently building an "AJAX edit-in-place" feature, so that you can edit a record while being on the same page. ...
5
votes
4answers
320 views

Better way to build a list

I've got an app in production where the user builds a list of beer prices to later on make into a PDF of shelf tags (it's for the beverage industry). The user picks a brand, then a package, types in a ...
2
votes
4answers
157 views

When should stepping through a list wrap around?

Given a list of items (messages in an email reader, tracks in a music library, options in a menu) that can be stepped through with arrow keys, when is it appropriate for scrolling to wrap around when ...