@Sarah_Esteve no problem!
That’s the error message you get when the javascript plugin element isn’t setup correctly.
Take another look at my example page, i’ve just added “example 10”, which uses option sets.
@Sarah_Esteve no problem!
That’s the error message you get when the javascript plugin element isn’t setup correctly.
Take another look at my example page, i’ve just added “example 10”, which uses option sets.
You can pretty easily get this functionality with Bubble RGs and Text Elements which makes triggering actions and handling formatting much easier. See example below.
I created a sample app to demonstrate:
Here is a link to a demo page: Bubble | No-code apps
Here is a link to the editor: Rg-chips-tags-demo | Bubble Editor
You can do this by following these steps:
Make your RG Full List with 1 row and 1 column.
Deselect “This repeating group has a fixed width” and select “Allow more than one column when stretched”.
Add an ID Attribute to the RG (I’m using “tag_rg” as my id).
Add a text element inside the RG’s one cell that is the same width as the cell. Add your dynamic text content to this text element and style it however you prefer.
Add the following code snippet to your Page HTML Header found at the bottom of your page’s element editor dialog.
<style> #tag_rg .bubble-r-box, #tag_rg .bubble-r-line, #tag_rg .group-item, #tag_rg .Text { width: auto !important; position: relative !important; } #tag_rg .group-item { padding-right: 10px !important; } </style>
Hope this helps everyone!
oKAY I understood why it was not working… I had a OS display like “women’s right”
After remove the " ’ " it is ok now thanks for providing an example for OS !
thank you but unfortunatly this is not working when using the new responsive engine
@Sarah_Esteve awesome! Glad you got it working, good to know " ’ " breaks it too!
Dang, that’s unfortunate. I thought they had native support for this in the new engine, but I guess not.
There are quite a few threads like this, using HTML and/or CSS styles and JavaScript handlers to create tags. They work, but you lose much of the power of Bubble to organise and understand your app if you do it that way.
I’ve just created an incredibly simple plugin that makes any Repeating Group you choose flow from one row to the next, rather than being a fixed grid. It makes it simple to create HTML chips in pure Bubble, gives you complete design and interaction freedom, and doesn’t require any knowledge of HTML, JavaScript or CSS.
Thank you @michael.fielding . I just tested your plugin and it works like a charm. Very easy to use and implement. Hats off to you
SUPER helpful, thank you!!