mirror of
https://github.com/rivo/tview.git
synced 2026-04-27 13:55:51 +03:00
[GH-ISSUE #1094] Possible bug or misconfiguration in table #793
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#793
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @manuecg on GitHub (May 21, 2025).
Original GitHub issue: https://github.com/rivo/tview/issues/1094
Hi, I'm trying to display long text entries in a table by scrolling horizontally (using the right arrow key). While horizontal scrolling does occur, the full text is not completely visible at the end.
I'm using setMaxWidth(0), so I wonder if I'm missing a required property or if this could be a bug
@rivo commented on GitHub (Aug 27, 2025):
Horizontal scrolling on tables is not by character but by table column. When you hit the right arrow key two times, you've scrolled to the last (i.e. right-most) column. There's no more scrolling afterwards. You'll want to find ways to keep your cell contents short / narrow.