_ "github.com/mattn/go-sqlite3"
)
+type missingCol func (map[string]interface{}) interface{}
+
type column struct {
name string
title string
align int
+ toCall missingCol
}
type grid struct {
for _, c := range g.cols {
v, ok := m[c.name]
- if ok {
- ret += fmt.Sprintf("\t<td>%v</td>\n", v)
- } else {
- ret += fmt.Sprintf("\t<td></td>\n")
+ if !ok {
+ if c.toCall != nil {
+ v = c.toCall(m)
+ }
}
+ ret += fmt.Sprintf("\t<td>%v</td>\n", v)
}
ret += "</tr>\n"
return ret
}
+func missing (row map[string]interface{}) interface{} {
+ ret := "<button>Save</button>"
+
+ return ret
+}
+
func main() {
var g grid
g.addColumn(c)
c = column{name: "btn", title: "Buttons"}
+ c.toCall = missing
g.addColumn(c)
fmt.Println (g)