mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
[GH-ISSUE #174] Is there a way to delete rows or cells from tables? #136
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#136
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 @willowiscool on GitHub (Oct 21, 2018).
Original GitHub issue: https://github.com/rivo/tview/issues/174
Trying to remove cells from a table without having to re-make the whole table because I add certain event listeners to it which use scoped variables (so adding those listeners on them inside of a table-making function would mean passing lots of variables to it)
@rivo commented on GitHub (Oct 27, 2018):
I could offer a
RemoveRow()or aRemoveColumn()function. Is that what you would need?@willowiscool commented on GitHub (Oct 29, 2018):
Yes
@rivo commented on GitHub (Nov 10, 2018):
I've added those two functions in the latest commit.