attempt a table string func
This commit is contained in:
parent
3a42f0f9a5
commit
d667d8c26a
3
doGui.go
3
doGui.go
|
@ -80,6 +80,9 @@ func drawWindow(win *gadgets.BasicWindow) {
|
||||||
grid.NewButton("me.machines.ShowTable()", func() {
|
grid.NewButton("me.machines.ShowTable()", func() {
|
||||||
t := me.machines.NewTable("test 2")
|
t := me.machines.NewTable("test 2")
|
||||||
t.AddHostname()
|
t.AddHostname()
|
||||||
|
t.AddStringFunc("sMB", func(m *zoopb.Machine) string {
|
||||||
|
return fmt.Sprintf("%d mb", m.Memory/(1024*1024))
|
||||||
|
})
|
||||||
t.ShowTable()
|
t.ShowTable()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue