Learn Bubble with 500+ tutorials, courses & AI Assistant ✨

Limited time launch offer get $80 off today

0 days 0 hours 0 minutes 0 seconds
SAVE $80 NOW
Planet No Code logo
Bubble.io CoachingFounder MentoringSponsorships
LoginLearn Bubble.io

Creating a Temporary List Using Custom States in Bubble.io

In this Bubble.io tutorial video we show how Custom States to show a temporary list and build upon a temporarily list without saving data to your Bubble app's database using Repeating Groups.

Join now $19/monthLearn more
Get 500+ tutorials, a No-Code AI Assistant, 4 premium courses, and everything you need to build faster!
Creating a Temporary List Using Custom States in Bubble.io
Explore these topics...
Workflow
Add list
Design
Checkbox
Conditional statement
Database
Custom States
Icons
Minus item
Option Sets
Plus item
Set list
Set state

With just this tutorial learn...

Unlock temporary list magic: Learn how to create toggleable options without database commits in Bubble's custom states!

Master dynamic data handling: Discover the power of option sets and custom states for flexible user selections in Bubble.

Elevate your Bubble skills: Build an intuitive availability selector with toggleable checkboxes and delayed database saves.

With membership you'll...

Learn how to build a ChatGPT Clone, Custom CRM for your business & SaaS Marketing website with Webflow & AI.

Unlock 500+ Bubble tutorial videos with AI powered Q&A.

Debug your Bubble app instantly with our custom trained No Code AI Assistant.

Join now $19/month
Risk-free! 14-day money-back guarantee. Cancel anytime.

Creating Custom States for Temporary Lists

There can be any number of reasons why you will want to present your user with a list of items that they can toggle on or off without committing that list to your database so that when the user clicks a button, in this case next, that is when you save the final list of just the checked items that the user has checked. To illustrate this, here's my sign-up form and I'm going to use availability. We're going to approach this using custom states so nothing is saved to the database and option sets because I'm going to be using a fixed collection of options.

Setting Up Option Sets and Database Structure

Let's create an option set for availability. This is just going to be three items, mornings, afternoons and evenings. Then I'm going to store this in my user. In order to keep the power of option sets throughout my application, I'm not going to choose text because then I lose the power of an option set really. I'm going to choose availability instead because that way the database is storing an option set value. It's going to be more than one because they might choose mornings and evenings or mornings and afternoons or they might just choose mornings, but I'm wanting to prepare a place for a list.

Creating a Repeating Group for Availability Options

Then I'm going to need a repeating group in order to show my list. This is my availabilities and I want to show all availability and a fixed number of sales because I know that it's just down to three. Let's give the sales a label. I'm going to use icons to create a checkbox. This is preferable in most instances to using the default checkbox that Bubble provides because this one, you could style it with CSS, but it's not stylable in the Bubble editor itself and it also has a text label attached to it. It doesn't offer a huge amount of flexibility.

Styling Checkboxes with Icons

I can use an icon to basically get the same effect, but choose lockbox square. Here we go. I can have much more flexibility with an icon. Let's make this a gray and then hit preview. You can see the repeating group lists my option set. Now, let's work out the workflows for when I click on either the box or the text, the box becomes checked instead.

Creating Custom States for Availability

In order to only create one workflow, I'm going to put both of these in a group, make the group fill up the whole of the space, and then let's start creating a workflow. Ah, but before then, we have to create a custom state. You can create a custom state anywhere on your page. The practice that I take is to create a custom state somewhere that makes sense to me. I have this container called group C and I'm going to just label it group availability. I'm going to create the custom state here. This is to allow me to store the items that are checked without having to commit that to the database. This is going to be called checked availability and it's going to store availability. Again, they could choose more than one, so it's going to be a list.

Building Workflows for Toggling Availability

Let's build a workflow. When the cell is clicked, I'm going to need to set a custom state. The custom state is a little bit confusing because it's automatically named the cell as a group availability, but I know that it's this one, is where I've stored my custom state. When working with custom states, you don't have as many list options as you do when working with lists in the database. You have to use it as a workaround, which is to say when I'm adding an item, I have to refer to where I'm storing it to begin with, which is this one here. Then say I want to add an item to it.

Adding and Removing Items from Custom States

If I was to just put in this custom state, the cell's availability value, first of all, it wouldn't accept it because it's expecting a list. But if it wasn't for that, it would also overwrite what was in this custom state to begin with. I need to refer to the custom state and then plus item, and now I can refer to the current cell as availability. I like to use colors in order to distinguish if I'm adding something, which is green, or if I'm removing something, which is red.

Implementing Conditional Workflows

I now need to do the opposite because I have a workflow. If someone clicks it, it's going to save this cell's availability. But what if a user for some reason clicks it and then clicks it again expecting to remove the availability? I can do that just by copying and pasting, and then this one is going to become red. Instead of plus, it's going to become minus item. This won't work because both of these workflows will fire when the cell is clicked, so I need to add an only when statement.

Finalizing the Toggle Functionality

Going to the custom state that is holding everything, so not that one, this one. Only when this doesn't contain the current ... No, this is my undo, so this is only when it contains. When the custom state contains my availability value and the cell, that bit there, that is clicked. I want it to remove it. I can then copy this, save myself some time, and paste it into here and swap it for it doesn't contain. Because I only want my custom state list to be updated if it doesn't already contain this availability.

Updating the UI Based on Custom States

We're almost there. There's one thing missing, which is I need to tell the icon to change if the availability is indeed in the custom state list. I go to the custom state, which is that one. Checked availability contains this group's availability because that's the row, that's the cell. Then I can go icon and change this to ... I believe Font Awesome call it check. Let's change the color also to green so it really stands out.

Testing the Functionality

Let's test that. Now I'm expecting if I click on this, it's going green. If I click off it, click on it again rather, it unchecks it. Nothing is being written to my database. I don't even need to have created this user at this point in order to make it work.

Saving Data to the Database

How do I save it to the database? I go onto my next button, sign up user. That's from another demonstration. Let's remove those two. I've got my email value and my password value and my name value. Now I need to add my availability value. This is where I add a list. I'm not adding an individual item. I'm adding a list. Set list will overwrite anything that's already stored in there. As I'm signing up a user, nothing is stored in there. Add list will take what is already in that field and add this incoming list into it. It doesn't matter which one of these I choose right now. I just need to remember where I have stored my custom state. That is here.

Final Testing and Conclusion

There we go. Give it a final refresh. Using custom states and using an option set, I've been able to allow my user to toggle on and off a list of options without saving it to the database. Then meaning that my next button is where the data gets saved and indeed where this user is created.

Table of contents

Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Your No-Code Journey Starts Here

The best way to learn Bubble.io?

Build No Code Confidently

No more delays. With 30+ hours of expert content, you’ll have the insights needed to build effectively.

Find every solution in one place

No more searching across platforms for tutorials. Our bundle has everything you need, with 500+ videos covering every feature and technique.

Dive deep into every detail

Get beyond the basics with comprehensive, in-depth courses & no code tutorials that empower you to create a feature-rich, professional app.

Monthly
Yearly
Member
Accelerate your Bubble app to launch
$99 / month
$19/month/mo
Includes:
500+ tutorials
4 premium courses
Find the right tutorial with our custom trained AI
New tutorials added each week
Cancel anytime
14 day money back
Join now
Member
Accelerate your Bubble app to launch
$990 / year
$149/year/mo
Includes:
500+ tutorials
4 premium courses
Find the right tutorial with our custom trained AI
New tutorials added each week
Cancel anytime
14 day money back
Join now

Frequently Asked Questions

Find answers to common questions about our courses, tutorials & content.

Do I need any coding experience?

No. Our Beginner Essentials course and AI No-Code Coach are designed for total newcomers. You’ll learn Bubble.io step by step - no coding required.

How does the AI No-Code Coach work?

Simply type your question in plain English, and our AI taps into the entire video library to recommend the exact lessons you need. It’s like having a personal instructor on demand.

How long can I access the content?

As long as you’re subscribed! With our monthly subscription, you get unlimited access to all 500+ videos, our growing course library, and the AI No-Code Coach.

What courses are included

Your subscription includes:

  • Bubble Beginner Essentials – Get up and running fast.
  • Build a ChatGPT Clone – Integrate AI into your no-code apps.
  • Build Your SaaS Website with AI – Learn to create a scalable startup site.
  • Develop a Custom CRM App in Bubble - Learn database relationships with a CRM.

Plus, new tutorials every week!

What if I get stuck on a lesson?

The AI No-Code Coach is your first stop for instant answers. If you need deeper help, you can book 1:1 Bubble coaching for expert guidance.

Do you offer a money-back guarantee?

Yes! If you don’t see real progress within 14 days, let us know, and we’ll issue a full refund—no questions asked.

Can I cancel anytime?

Absolutely. Your subscription is month-to-month, and you can cancel anytime—no lock-ins, no hidden fees.

What if I want more than just tutorials & courses?

Absolutely. Your subscription is month-to-month, and you can cancel anytime—no lock-ins, no hidden fees.

If you’re serious about building a successful SaaS startup, check out Mastery—our intensive mentorship program. Mastery goes beyond Bubble.io development and includes:

  1. 1:1 mentorship to fast-track your progress
  2. Marketing strategies tailored for no-code founders‍
  3. Product management insights to scale your startup‍
  4. Personalized support from experienced founders

‍

Still have questions?

Reach out to our dedicated team.

Contact
Services
Search Bubble TutorialsBubble.io CoursesBook Bubble.io CoachingApply for Mastery
Latest Bubble tutorials
Rerank Text By MEANING With Cohere In Bubble.io Step by Step!
Unlock RAG Providers for NO CODE AI App Development TODAY!
Better Tables with Built-in Search and Sort By in Bubble.io
Partnerships
Flusk.eu
VectorShift
Comnoco
Plumb
Toddle
Whereby
Get started with no code
AI Powered No Code AppsNo Code Web ScrapingBubble.io Plugin tutorialsBubble API Connector tutorialsStudent & Teacher DiscountBest tools for no coders
Follow us
Youtube
X
LinkedIn
Planet No Code logo
In partnership with
Queen Mary University of London Logo
© 2024 Planet No Code. All rights reserved.
Privacy PolicyTerms of ServiceCookies SettingsContact Us