mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
[GH-ISSUE #264] [Question] How do I display form above the grid? #206
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#206
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 @skanehira on GitHub (Apr 11, 2019).
Original GitHub issue: https://github.com/rivo/tview/issues/264
@rivo
Hi!
Thank you for develop tview.
This project is very good so I like it :)
BTW I developing the tui client for docker but I have a problem.
I want to display form primitive above the grid but I don't know how to do it.
I want to do the following.(Current project uses gocui)

@gstvg commented on GitHub (Apr 11, 2019):
Take a look at https://github.com/rivo/tview/wiki/Modal
I think this should work:
@skanehira commented on GitHub (Apr 11, 2019):
@gstvg
Thank you!
I solved this problem :)
pages.SwitchToPage ("form") will hide the grid, so g.pages.ShowPage ("main") was required.