appsmithorg / appsmith

Platform to build admin panels, internal tools, and dashboards. Integrates with 25+ databases and any API.
https://www.appsmith.com
Apache License 2.0
34.43k stars 3.72k forks source link

[Feature]: Allow users to select the overflow type in table widget #13921

Open dilippitchika opened 2 years ago

dilippitchika commented 2 years ago

Is there an existing issue for this?

Summary

Today our devs cannot configure table to only have scrolling and no pagination. While this may not be useful to begin with for large data, we plan to expand this and add support for cursor based pagination and infinite scrolling on top of it.

Why should this be worked on?

Allows users to represent data as they wish rather than being constrained with pagination. The workaround today is to enable server side scrolling to see all records in a single page.

Front logo Front conversations

charles-bloomfield commented 2 years ago

fyi this would be super valuable for us. Our users much prefer a singular scroll view vs a paginated view. Current work arounds are

justcarroll commented 1 year ago

I agree with Charles.. Scrolling ability is super valuable.

dilippitchika commented 1 year ago

Thanks folks, currently we don't have scroll natively yet. This issue talks about making it happen.

But a workaround is-

  1. Turn on server side filtering
  2. Hide the pagination by turning off the switch in "show pagination" option

Note: This will impact speed of the app for large records as all of them are loaded in the same page. Please be careful.

charles-bloomfield commented 1 year ago

Yea @dilippitchika we are currently using that workaround, which I discovered after my comment last month, and it is working well.