Hi @tyler22 In Bubble if you want to trigger workflows on a list of things you need to schedule a backend workflow on a list. Did you already try that? (need to be on a paid plan)
Hopefully this helps!
Hi @tyler22 In Bubble if you want to trigger workflows on a list of things you need to schedule a backend workflow on a list. Did you already try that? (need to be on a paid plan)
Hopefully this helps!
Perfect thank you @Thimo I have not tried that! I do have a paid plan and will take that approach. I was banging my head trying to get to use custom events and workflows at the page level to execute. I won’t bore you with all of the things I attempted, but this was not one of them. I’ll give it a go.
And thank you for your prompt responses. I love the plugin. Keep up the solid work and support.
I want to truncate after the first 200 characters in each cell. The first 2 entries worked great, but since I’m using a comma as my delimiter (and split text by:), the other entries were cut off too short. What should I use instead for the delimiter/split text by?
@sydney22 use a delimiter that is not or could not be present in your text. For example:
#&#
|$|
Etc…
Don’t for get to also change your split by expression to use the new delimiter
Awesome, @Thimo- worked like a charm!
Is there an efficient way to rearrange the order of the columns in the editor or is the only option to tear it all out and re-add one by one?
Hey @Thimo awesome plugin, I’ve got this running in a couple of apps now
I would like to alter text colour on a condition of a row item (without it being clicked for validation) is this possible?
In a repeating group I can do this
and use conditionals to change the colour of an icon
In your plugin Im doing this
Which gives me
but the conditionals seem to only apply if the row is clicked or selected. Is that right?
Thank you in advance!
Johnnyweb
Rearrange is not possible by using workflow actions, I will put it on my list!
Conditional row colors are not yet supported, however you can dynamically change the color of the text for example, it works differently than a repeating group though. You need to conditionally build the HTML , I have updated the demo page like this (note the {{value}} in the HTML field):
Hopefully this helps!
Hi – whats the issue here?
The plugin Data Table / Grid / action
Download CSV a Table / grid threw the
following error: anonymous@
@https://app.chindit.com/package/
run_js/
f914513efa6ca3b4d5a168aa77ecd7f2cdb3c
dac5675fc793e01e50037861e57/xfalse/×23/
run.js:205:676
run_with_error@https://
app.chiaudit.com/package/run_js/
f914513efa6ca3b4d5a168aa77ecd7f2cdb3c
dac5675fc793e01e50037861e57/xfalse/x23/
run.js:207:70 (please report this to the plugin
author)
Close
@callum1 I can’t see what’s going on by just looking at the error unfortunately, I will send you a PM so we can take a closer look!
Was it ever determined if a select all checkbox could be put in the header? I believe this was discussed a little while back. The workflow action is a fine substitute but a header checkbox would be more intuitive.
hey @tyler22 this is how I do it with the plugin. Schedule workflow on a list - the backend workflow just accepts one employee at as time. The trick is to filter the list
Cheers - Johnnyweb
Hey @johnnyweb- do you ever do this to delete selected items? I’m using ListShifter but it’s a little too slow.
@sydney22 I’m only starting to explore workflows on a list again since the most recent bubble update. I was told it’s flakey above 100 items and so built my own recursive workflows to cycle through an item at a time (or batches).
I step through that here Deleting Thousands of Records in Bulk - #7 by johnnyweb
but im keen to know if this works better now in terms of WU consumption
Wow thank you @johnnyweb
Hi @Thimo apologies if this has been asked I had a good search of the thread.
I have a couple of thousand records and want to use search to limit the display list, then select all of those filtered records for a further action.
When I use the select all checkboxes workflow, it selects the entire list of things not the filtered list from the search. Is there any way I can get the output of the filtered list and just check all those records?
Thanks! Johnnyweb
Hi @johnnyweb, at this time the ‘select all’ option select all the items from your data. I unfortunately can’t access the list of filtered items by the search bar. That’s why I do not think there is a way to do that right now, but I will put it in my list so I can do some more research
Hi @Thimo !
I am getting an error even on the latest version running the “re-render action”:
Action Re-render table Table/grid Search Results - The plugin Data Table / Grid / action Re-render table a Table / grid threw the following error: anonymous@PLUGIN_1593724959866x956106696186921000/Data-Table-/-Grid-element_action--Table-/-grid-Re-render-table-.js:3:15
lib-browser/pluginservice.js/pluginservice.create_code/<@https://REDACTED/package/run_debug_js/1229f399bf8c95e1b14f7c221a915837aef9610ecf068500c99c053ef2b2a40c/xfalse/x26/run_debug.js:530:673
lib-browser/pluginservice.js/_interpret_raw_plugin_def/run/</</</</<@https://REDACTED/package/run_debug_js/1229f399bf8c95e1b14f7c221a915837aef9610ecf068500c99c053ef2b2a40c/xfalse/x26/run_debug.js:657:3364 (please report this to the plugin author)
Object { original_error: TypeError, element_instance: null, action: {…}, code: "1699963522343x235229619278737630" }
action: Object { json: {…}, A: {…}, _field_names: {…}, … }
code: "1699963522343x235229619278737630"
element_instance: null
original_error: TypeError: instance.data.updateData is not a function
<prototype>: Object { … }
run_debug.js:662:4
I believe it’s either related to empty columns / no data to show when calling the re-render function.
I use this function because I realized that if the source data for the table changed to an empty value the table wouldn’t always clear itself.
Thanks in advance for your support.
@govwise Are you re-rendering the plugin while the plugin is not yet loaded/hidden on the page? If so that will cause an error like this. you can check if the table is loaded by the element’s ‘is loaded?’ state.
Hopefully this helps!
Hello Thimo !
I’m having some issues when downloading the table to CSV. Letters with accents will not get properly converted and will create weird characters.
I would also need to download it to XLSX and not CSV, and for that I would need the content of the table. Do you know if there’s a way to access the table content in a JSON format, or any other format ?
Thanks a lot