From: Andrea Zagli Date: Wed, 22 Jun 2022 13:49:06 +0000 (+0200) Subject: Call ToCall method also when the method is not nil. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=HEAD;p=zakgrid_go Call ToCall method also when the method is not nil. --- diff --git a/grid/grid.go b/grid/grid.go index f01a7c9..87fa00d 100644 --- a/grid/grid.go +++ b/grid/grid.go @@ -120,7 +120,7 @@ func (g *Grid) GetRowFromMap (m map[string]interface{}) string { for _, c := range g.cols { v, ok := m[c.Name] - if !ok { + if !ok || c.ToCall != nil { if c.ToCall != nil { v = c.ToCall(m) }