[New feature] Table element [beta]

Since people seem concerned about the lack of updates to the Table element, I’ve put together a list of ideas about the Table element currently on the Bubble ideaboard - the official tool Bubble use to track user suggestions. You can find it in this post. I’d recommend upvoting what you’d find helpful and adding ideas you think are missing to the Ideaboard.

3 Likes

Has anyone hacked a way to get sticky columns?

I wish this was offered! Seems like a miss, since we have the sticky row.

yes , i did by creating 2 table and grouping them in a row group, the first one has only one columns and the second one has all the other columns

2 Likes

Thanks @gerbertdelangen! It’s a bit circuitous but works.

1 Like

Any idea on how to activate the horizontal scrolling ?

1 Like

Wrap your table element in a group and make it 100% width and add to that group a class (classify plugin). You can then add this css to force the scrolling.

{addClass: “my-class”}

```.my-class { 
    overflow-x: auto !important;
}```

Hello,

I have a problem to access to custom state of a reusable element inside the table. I want to know how to get access (page) to the customs states of my RE dropdrown ?

You should probably start a new thread for this type of question.

Regardless, check out the Antenna/Satellite plugin:

Thank you very much for the recommendation! I try to avoid using plugins as much as possible, but if it’s really the only viable solution, I might consider it.

That being said, I’m wondering if this limitation is due to the fact that the Table Element is still in beta and that access to custom states of Reusable Elements hasn’t been implemented yet (Team Bubble)?

In that case, is there a workaround that others who have faced this issue have used without relying on a plugin? Otherwise, if a plugin remains the best solution, I’ll give Antenna/Satellite a try to see how it fits into my workflow.

Thanks again for your help!

The challenge you cite is unrelated to the beta status of the table element. For a page-level action or element to reference a custom state of a reusable element that’s replicated for every item within either a table or a repeating group, there needs to be a mechanism for the page-level reference to reconcile which of the multiple reusable elements is intended. There’s no native way to accomplish that. Plugins like the one I cited fill that gap in Bubble functionality.

I finnaly use Toolbox by running JS to make it work. Thanks again for your help!