attempt a table string func

This commit is contained in:
Jeff Carr 2025-02-19 17:21:26 -06:00
parent 3a42f0f9a5
commit d667d8c26a
1 changed files with 3 additions and 0 deletions

View File

@ -80,6 +80,9 @@ func drawWindow(win *gadgets.BasicWindow) {
grid.NewButton("me.machines.ShowTable()", func() {
t := me.machines.NewTable("test 2")
t.AddHostname()
t.AddStringFunc("sMB", func(m *zoopb.Machine) string {
return fmt.Sprintf("%d mb", m.Memory/(1024*1024))
})
t.ShowTable()
})