Skip to main content

Designing User-Friendly Overview Screens: Best Practices and Key Features


In software development, we often find ourselves reinventing the wheel—particularly when dealing with higher-level abstractions. As I mentioned in my blog "Unlocking Business Value: Moving Beyond Low-Level Programming", while open source has reduced redundancy at the technical level, user interfaces continue to see many foundational patterns being rebuilt repeatedly.

A classic example is the "Overview" screen, where users search for and interact with a set of data, performing actions like viewing or editing specific results. Each application tends to design this screen differently, often after much debate. To avoid reinventing the wheel every time, it is helpful to develop a reusable checklist of essential features. Although cost constraints may lead to the exclusion of some items, this list ensures conscious decisions are made for each feature.

A typical overview screen is divided into three main parts:

  • Header Section: This includes navigation options (e.g. breadcrumbs, back buttons…​), settings (e.g. user language), and action buttons like "Create/Add" or "Import/Upload," enabling users to create (or update) single or multiple entities.

  • Filtering/Search Block: The area where users define and apply search criteria.

  • Result Block: Where search results are displayed, and users can perform actions on those results.

Let us break down these parts in more detail.

Filtering/Search Block

This section allows users to specify search criteria and refine their results. It typically includes four key elements:

  • Filters and Search Criteria: Ranging from simple text searches to complex multi-criteria filters.

  • Save and Retrieve Options: The ability to save filters, recall stored ones, categorize them, and share with others. You may also include templates for predefined filters that prompt users to input specific variables.

  • Clear Button: A simple feature that resets all active filters.

  • Applied Filter Overview: Displays the currently selected filters, with options to remove or modify them.

When designing the filtering section, consider the type of filtering required. Several filtering options exist:

  • Text search: Users enter free text to return results that contain a specific string.

  • Tag filtering: Clicking on a tag or category to apply a filter automatically.

  • Drill-down filtering: Starting with a broad filter (e.g. years), users can click to narrow down dynamically (e.g. months, then days).

  • Selection Filters: Users define filters based on specific attributes, which can range from simple to very complex.

  • Advanced Filters: Using a predefined scripting language (e.g. SQL or a domain-specific language) for custom filtering.

Additionally, you will need to address other concerns like:

  • Allowing single or multiple filter values, including "include" or "exclude" modes.

  • Whether to support wildcards, fuzzy searches, and operators (like <, >, ⇐, >=…​) for numeric or date filters.

  • Options for relative date filters (e.g. "Last 7 days", "Current month" or "Last Year").

  • The combination of multiple filters using operators like AND, OR, and NOT.

Result Block

The result block is the core of the overview screen, where users spend most of their time. It is essential to avoid overcrowding this section with too much header or filter content to maximize the workspace for interacting with data.

The result block can be divided into these key components:

  • Quick Suggestions, Carousels and/or Banners: These could include personalized recommendations, marketing banners, dynamic carousels, or even data visualizations (e.g. statistics or charts) related to the search results.

  • Result Configuration and Result Actions:

    • Toggle between different view types (list, grid, map…​).

    • Customize the number of results per page.

    • Export data with various options (e.g. output type XLS, CSV or PDF, current page or all pages, and column configuration).

    • Perform bulk actions like deleting or approving multiple results at once, often with a “Select/Deselect All” option.

  • Result Statistics: Display the total number of results, total pages, and the current page number for better user context.

  • Result Overview: The core table or other display formats (e.g. tile or map views) where data is shown.

    • Column Customization: Allow users to rearrange, resize, and sort columns. Multi-criteria sorting is valuable, as are actionable columns (e.g. flagging items as favourite or important, selecting for bulk actions or doing direct edits in the result set).

    • Column Header: Show column names and sorting status, with the headers remaining fixed when scrolling.

    • Paging or Infinite Scrolling: Paging is traditional, where users click through pages, while infinite scrolling loads more results as users scroll down. Infinite scrolling can offer a smoother experience when implemented with pre-loading techniques to avoid delays.

    • Rows: The rows correspond to the search results, and various actions can typically be performed on each row.
      The most common action occurs when clicking on a row, which often opens a "View details" screen for that entry. However, different behaviors may be assigned depending on how the user interacts with the row. For example, some implementations may differentiate between a single click, double click, or right click. In some cases, clicking on a specific column within the row may trigger additional functionality. For instance, clicking a column might open a dialog that applies a filter based on that column’s attribute, allowing users to either select all records with matching values or exclude those values from the result set.
      Additionally, contextual actions are often available at the end of each row. These may be presented as an action menu with various options or as individual icons. The specific actions that are visible or enabled depend on the user’s role and the characteristics of the returned results. Common actions include view, edit, delete, approve, reject, print, comment, attach a document, or clone/duplicate the entry.

Non-Functional Considerations

Beyond functionality, non-functional aspects like performance, security, and usability are crucial for a seamless experience.

  • Performance: obviously you want to ensure that a user gets a search result as quickly as possible and avoid that a user launching a heavy query brings down the platform (or negatively impacts the stability and performance of the system for other users). Many tricks exist for this:

    • Smart Filtering: Limit heavy filters like wildcards and ensure proper indexing

    • Caching: Cache data or search results to improve performance, balancing performance, infrastructure costs and freshness of the search results.

    • Asynchronous Exports: Large exports can be handled in the background, allowing users to continue working.

    • Time-out Management: Both front-end and back-end time-outs should be handled properly to avoid overloading the system.

    • Paging: Paging helps limit resource consumption by returning only a subset of the data at a time. The way paging is implemented significantly impacts performance. For instance, if the system retrieves all results but only sends one page to the API, the gain is limited to reduced network load and faster rendering in the user interface. However, the performance benefit is minimal in terms of data retrieval.
      For optimal performance, paging should be applied at the data retrieval layer itself. This ensures that only the necessary subset of data is fetched from the database, resulting in more substantial performance improvements.

    • Avoid double click: Users often click "Search," "Next/Previous page," or other buttons (e.g. sorting arrows) multiple times if they do not see immediate feedback. This can result in duplicate requests being sent to the back-end, potentially overloading the system. To prevent this, it is recommended to temporarily disable the button or action after it is clicked and re-enable it only once the action is complete.

  • Data Consistency:

    • Maintaining consistent data can be challenging, especially with continuously changing datasets and when paging is applied. Ideally, all pages should be cached to ensure consistency. If each page is fetched again from the data store and a specific sorting is applied, the composition of pages may become messy—records that appear on page 1 may reappear on page 2 if new data is added to page 1 in the meantime.

    • The same principle applies to action buttons, whose visibility may depend on certain attributes. If an attribute that enables an action changes between data retrieval and when the user clicks the button, the system should handle this gracefully and display an appropriate error message if the action can no longer be performed.

  • Security and Auditing:

    • It is crucial that the overview screen and all associated actions are protected by authorization profiles, ensuring that only users with the required permissions can access the screen and perform specific actions.

    • Data segregation: The results displayed in the overview screen should be limited to the data the user is authorized to view. If horizontal data segregation is applied, certain columns might need to be hidden or disabled for users without permission to view those attributes.

    • Filter visibility should also be configurable based on user roles. Not all filters are relevant to every user, so it may be helpful to hide certain filter criteria for specific user groups and customize the order or grouping of filters. This way, each user can search in a way that is optimized for their role.

    • Auditing and tracking: Log all searches executed by users, as well as which results were returned. Additionally track the filters users applied to better understand their search behavior.

  • Usability and Mobile Responsiveness:

    • Responsive Design: As applications are increasingly used across a variety of devices, responsive design is critical. Overview screens, in particular, can be difficult to optimize for mobile because they typically present a large amount of data on a single screen. Adaptations will be necessary to ensure a good user experience on smaller devices.
      Common adjustments include:

      • Converting the filter menu into a dialog box that can be opened and closed when applying a filter, preventing it from taking up too much screen space.

      • Displaying results in a stacked view, where multiple lines per result are shown to fit all relevant columns on a smaller screen.

      • Converting paging to infinite scrolling on mobile, which feels more intuitive for mobile users.

      • Replacing action menus with icons to improve clickability on small screens.

    • Persistency of User Settings: Another important usability consideration is whether the settings a user applies, such as Last executed search, Filter configuration, Result configuration or Page Size, should persist across sessions or be reset when the user leaves the screen. Different options like "Keep settings only as long as the current overview screen is open", "Persist settings for the duration of the user’s session" or "Always show the last applied settings, even after the user logs out" exist. The best option depends on the specific use case and user preferences. It is important to handle exceptions properly—such as when a user’s permissions change, or when updates to the application alter available filters—to avoid confusion or errors.

A well-designed overview screen is not just a luxury; it is a critical part of any business application. By incorporating the right features and thinking through non-functional elements like performance and usability, you can provide users with a seamless experience that meets their needs while also optimizing system performance.

For more insights, visit my blog at https://bankloch.blogspot.com

Comments

Popular posts from this blog

Transforming the insurance sector to an Open API Ecosystem

1. Introduction "Open" has recently become a new buzzword in the financial services industry, i.e.   open data, open APIs, Open Banking, Open Insurance …​, but what does this new buzzword really mean? "Open" refers to the capability of companies to expose their services to the outside world, so that   external partners or even competitors   can use these services to bring added value to their customers. This trend is made possible by the technological evolution of   open APIs (Application Programming Interfaces), which are the   digital ports making this communication possible. Together companies, interconnected through open APIs, form a true   API ecosystem , offering best-of-breed customer experience, by combining the digital services offered by multiple companies. In the   technology sector   this evolution has been ongoing for multiple years (think about the travelling sector, allowing you to book any hotel online). An excellent example of this

Are product silos in a bank inevitable?

Silo thinking   is often frowned upon in the industry. It is often a synonym for bureaucratic processes and politics and in almost every article describing the threats of new innovative Fintech players on the banking industry, the strong bank product silos are put forward as one of the main blockages why incumbent banks are not able to (quickly) react to the changing customer expectations. Customers want solutions to their problems   and do not want to be bothered about the internal organisation of their bank. Most banks are however organized by product domain (daily banking, investments and lending) and by customer segmentation (retail banking, private banking, SMEs and corporates). This division is reflected both at business and IT side and almost automatically leads to the creation of silos. It is however difficult to reorganize a bank without creating new silos or introducing other types of issues and inefficiencies. An organization is never ideal and needs to take a number of cons

RPA - The miracle solution for incumbent banks to bridge the automation gap with neo-banks?

Hypes and marketing buzz words are strongly present in the IT landscape. Often these are existing concepts, which have evolved technologically and are then renamed to a new term, as if it were a brand new technology or concept. If you want to understand and assess these new trends, it is important to   reduce the concepts to their essence and compare them with existing technologies , e.g. Integration (middleware) software   ensures that 2 separate applications or components can be integrated in an easy way. Of course, there is a huge evolution in the protocols, volumes of exchanged data, scalability, performance…​, but in essence the problem remains the same. Nonetheless, there have been multiple terms for integration software such as ETL, ESB, EAI, SOA, Service Mesh…​ Data storage software   ensures that data is stored in such a way that data is not lost and that there is some kind guaranteed consistency, maximum availability and scalability, easy retrieval and searching

IoT - Revolution or Evolution in the Financial Services Industry

1. The IoT hype We have all heard about the   "Internet of Things" (IoT)   as this revolutionary new technology, which will radically change our lives. But is it really such a revolution and will it really have an impact on the Financial Services Industry? To refresh our memory, the Internet of Things (IoT) refers to any   object , which is able to   collect data and communicate and share this information (like condition, geolocation…​)   over the internet . This communication will often occur between 2 objects (i.e. not involving any human), which is often referred to as Machine-to-Machine (M2M) communication. Well known examples are home thermostats, home security systems, fitness and health monitors, wearables…​ This all seems futuristic, but   smartphones, tablets and smartwatches   can also be considered as IoT devices. More importantly, beside these futuristic visions of IoT, the smartphone will most likely continue to be the center of the connected devi

PSD3: The Next Phase in Europe’s Payment Services Regulation

With the successful rollout of PSD2, the European Union (EU) continues to advance innovation in the payments domain through the anticipated introduction of the   Payment Services Directive 3 (PSD3) . On June 28, 2023, the European Commission published a draft proposal for PSD3 and the   Payment Services Regulation (PSR) . The finalized versions of this directive and associated regulation are expected to be available by late 2024, although some predictions suggest a more likely timeline of Q2 or Q3 2025. Given that member states are typically granted an 18-month transition period, PSD3 is expected to come into effect sometime in 2026. Notably, the Commission has introduced a regulation (PSR) alongside the PSD3 directive, ensuring more harmonization across member states as regulations are immediately effective and do not require national implementation, unlike directives. PSD3 shares the same objectives as PSD2, i.e.   increasing competition in the payments landscape and enhancing consum

Trade-offs Are Inevitable in Software Delivery - Remember the CAP Theorem

In the world of financial services, the integrity of data systems is fundamentally reliant on   non-functional requirements (NFRs)   such as reliability and security. Despite their importance, NFRs often receive secondary consideration during project scoping, typically being reduced to a generic checklist aimed more at compliance than at genuine functionality. Regrettably, these initial NFRs are seldom met after delivery, which does not usually prevent deployment to production due to the vague and unrealistic nature of the original specifications. This common scenario results in significant end-user frustration as the system does not perform as expected, often being less stable or slower than anticipated. This situation underscores the need for   better education on how to articulate and define NFRs , i.e. demanding only what is truly necessary and feasible within the given budget. Early and transparent discussions can lead to system architecture being tailored more closely to realisti

Low- and No-code platforms - Will IT developers soon be out of a job?

“ The future of coding is no coding at all ” - Chris Wanstrath (CEO at GitHub). Mid May I posted a blog on RPA (Robotic Process Automation -   https://bankloch.blogspot.com/2020/05/rpa-miracle-solution-for-incumbent.html ) on how this technology, promises the world to companies. A very similar story is found with low- and no-code platforms, which also promise that business people, with limited to no knowledge of IT, can create complex business applications. These   platforms originate , just as RPA tools,   from the growing demand for IT developments , while IT cannot keep up with the available capacity. As a result, an enormous gap between IT teams and business demands is created, which is often filled by shadow-IT departments, which extend the IT workforce and create business tools in Excel, Access, WordPress…​ Unfortunately these tools built in shadow-IT departments arrive very soon at their limits, as they don’t support the required non-functional requirements (like high availabili

An overview of 1-year blogging

Last week I published my   60th post   on my blog called   Bankloch   (a reference to "Banking" and my family name). The past year, I have published a blog on a weekly basis, providing my humble personal vision on the topics of Fintech, IT software delivery and mobility. This blogging has mainly been a   personal enrichment , as it forced me to dive deep into a number of different topics, not only in researching for content, but also in trying to identify trends, innovations and patterns into these topics. Furthermore it allowed me to have several very interesting conversations and discussions with passionate colleagues in the financial industry and to get more insights into the wonderful world of blogging and more general of digital marketing, exploring subjects and tools like: Search Engine Optimization (SEO) LinkedIn post optimization Google Search Console Google AdWorks Google Blogger Thinker360 Finextra …​ Clearly it is   not easy to get the necessary attention . With th

Deals as a competitive differentiator in the financial sector

In my blog " Customer acquisition cost: probably the most valuable metric for Fintechs " ( https://bankloch.blogspot.com/2020/06/customer-acquisition-cost-probably-most.html ) I described how a customer acquisition strategy can make or break a Fintech. In the traditional Retail sector, focused on selling different types of products for personal usage to end-customers,   customer acquisition  is just as important. No wonder that the advertisement sector is a multi-billion dollar industry. However in recent years due to the digitalization and consequently the rise of   Digital Marketing , customer acquisition has become much more focused on   delivering the right message via the right channel to the right person on the right time . Big tech players like Google and Facebook are specialized in this kind of targeted marketing, which is a key factor for their success and multi-billion valuations. Their exponential growth in marketing revenues seems however coming to a halt, as digi

AI in Financial Services - A buzzword that is here to stay!

In a few of my most recent blogs I tried to   demystify some of the buzzwords   (like blockchain, Low- and No-Code platforms, RPA…​), which are commonly used in the financial services industry. These buzzwords often entail interesting innovations, but contrary to their promise, they are not silver bullets solving any problem. Another such buzzword is   AI   (or also referred to as Machine Learning, Deep Learning, Enforced Learning…​ - the difference between those terms put aside). Again this term is also seriously hyped, creating unrealistic expectations, but contrary to many other buzzwords, this is something I truly believe will have a much larger impact on the financial services industry than many other buzzwords. This opinion is backed by a study of McKinsey and PWC indicating that 72% of company leaders consider that AI will be the most competitive advantage of the future and that this technology will be the most disruptive force in the decades to come. Deep Learning (= DL) is a s