mirror of
https://github.com/rivo/tview.git
synced 2026-04-27 05:45:49 +03:00
[GH-ISSUE #917] How to do scrolling text status #667
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#667
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 @rhugga on GitHub (Nov 16, 2023).
Original GitHub issue: https://github.com/rivo/tview/issues/917
I'm trying to determine if this is the correct library for me. I have an interactive automation tool that manages large software defined storage platforms like ceph, etc...
One of the modes loops thru a list of hosts and does various maintenance tasks serially. I want to output each host's status as it occurs on the tty.
Basically I'll be appending to the tty.
Something like this: (sorry github is munging the formatting)
So while host3 is processing, it updates the current task it is doing:
Is this possible with this library?
@theaog commented on GitHub (Jan 10, 2024):
use
tview.NewList()and in theapp.QueueUpdateDraw()function useInsertItem()@rivo commented on GitHub (Apr 4, 2024):
I assume this is resolved as there haven't been any further responses by OP.