/outsystems-tutorials

How to show alert or toast messages in OutSystems without disrupting user flow?

Learn to create non-intrusive toast alerts in OutSystems, maintaining seamless user flow with our step-by-step guide. Enhance interactions without disruption.

Matt Graham, CEO of Rapid Developers

Book a call with an Expert

Starting a new venture? Need to upgrade your website? RapidDev builds Webflow websites with your growth in mind.

Book a free No-Code consultation

How to show alert or toast messages in OutSystems without disrupting user flow?

Displaying Non-Intrusive Alerts or Toast Messages in OutSystems

 

In OutSystems, notifying users without disrupting their experience is crucial for maintaining an intuitive and seamless user interface. This guide provides a detailed step-by-step approach to creating alert or toast messages that ensure your application's user flow remains uninterrupted.

 

Prerequisites

 

  • Basic understanding of OutSystems' interface and development environment.
  • A working OutSystems application where you intend to implement toast or alert messages.
  • Familiarity with JavaScript and client actions in OutSystems for creating custom behaviors.

 

Understanding Toast Messages

 

  • Toast messages are brief notifications appearing on the screen that automatically disappear after a few seconds.
  • They are ideal for providing feedback to users without requiring additional actions, such as acknowledging a dialog box.

 

Setting Up a Toast Message in OutSystems

 

  • Open your OutSystems environment and navigate to the module where you want to add toast notifications.
  • Create a new Web Block (if not already available) to encapsulate the toast message behavior.
  • Add necessary styles in your module's stylesheet to define the appearance of toast messages. Example CSS could be:
        .toast-message {
            position: fixed;
            bottom: 20px;
            right: 20px;
            min-width: 200px;
            padding: 10px;
            background-color: #333333;
            color: #ffffff;
            border-radius: 5px;
            text-align: center;
            opacity: 0.9;
        }
        

 

Configuring the Web Block for Toast Messages

 

  • Add a Container to the Web Block to serve as the toast message display area.
  • Assign the previously defined CSS class (e.g., `toast-message`) to this container.
  • Introduce a text or expression widget within the container to dynamically hold the message content.

 

Implementing Client Side Logic

 

  • Create a Client Action for displaying the toast message.
  • Utilize JavaScript to control the visibility and timing of the toast. A sample JavaScript integration could be:
        var toast = document.createElement("div");
        toast.className = "toast-message";
        toast.innerHTML = $parameters.Message;
        document.body.appendChild(toast);
        setTimeout(function(){
            toast.style.display = "none";
            document.body.removeChild(toast);
        }, 3000); // Display time of 3 seconds
        
  • Use the Input Parameter (`Message`) to dynamically change the content of toast messages based on context.

 

Triggering Toast Messages

 

  • In the desired screen or action flow, call the Client Action when you need to display messages (e.g., on button click, form submission, etc.).
  • Pass the appropriate message text to the Client Action to ensure the correct message is shown to the user.
  • Test the integration in the preview mode to ensure messages appear as expected and do not disrupt other ongoing processes.

 

Testing and Ensuring User Flow Continuity

 

  • Verify that the toast messages appear correctly across different devices and screen sizes.
  • Ensure that messages are non-blocking and that user interactions can continue seamlessly while toast messages are displayed.
  • Adjust styling and timing as needed to improve the user experience and application aesthetics.

 

By following these steps, you can effectively incorporate toast messages into your OutSystems applications, providing users with timely feedback while preserving the flow of interaction. This ensures an efficient, non-disruptive user experience that enhances satisfaction and engagement.

Explore More Valuable No-Code Resources

No items found.

Want to explore opportunities to work with us?

Connect with our team to unlock the full potential of no-code solutions with a no-commitment consultation!

Book a Free Consultation

Client trust and success are our top priorities

When it comes to serving you, we sweat the little things. That’s why our work makes a big impact.

Rapid Dev was an exceptional project management organization and the best development collaborators I've had the pleasure of working with. They do complex work on extremely fast timelines and effectively manage the testing and pre-launch process to deliver the best possible product. I'm extremely impressed with their execution ability.

CPO, Praction - Arkady Sokolov

May 2, 2023

Working with Matt was comparable to having another co-founder on the team, but without the commitment or cost. He has a strategic mindset and willing to change the scope of the project in real time based on the needs of the client. A true strategic thought partner!

Co-Founder, Arc - Donald Muir

Dec 27, 2022

Rapid Dev are 10/10, excellent communicators - the best I've ever encountered in the tech dev space. They always go the extra mile, they genuinely care, they respond quickly, they're flexible, adaptable and their enthusiasm is amazing.

Co-CEO, Grantify - Mat Westergreen-Thorne

Oct 15, 2022

Rapid Dev is an excellent developer for no-code and low-code solutions.
We’ve had great success since launching the platform in November 2023. In a few months, we’ve gained over 1,000 new active users. We’ve also secured several dozen bookings on the platform and seen about 70% new user month-over-month growth since the launch.

Co-Founder, Church Real Estate Marketplace - Emmanuel Brown

May 1, 2024 

Matt’s dedication to executing our vision and his commitment to the project deadline were impressive. 
This was such a specific project, and Matt really delivered. We worked with a really fast turnaround, and he always delivered. The site was a perfect prop for us!

Production Manager, Media Production Company - Samantha Fekete

Sep 23, 2022