-
Notifications
You must be signed in to change notification settings - Fork 0
/
gridcontainer.go
75 lines (52 loc) · 1.78 KB
/
gridcontainer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package wajaf
type GridContainer struct {
NodeDef
}
func NewGridContainer(id string) *GridContainer {
c := &GridContainer{
NodeDef: NewNode("container", "gridContainer"),
}
c.SetID(id)
c.RegisterKnownAttributes([]string{"display", "style", "classname", "classnamezone", "left", "width", "right", "top", "height", "bottom", "haslistener",
"pagination", "maxperpage", "mode", "selectable", "insertable", "deletable", "change", "params"})
c.RegisterKnownChildren([]string{"zone", "template", "dataset", "event", "help"})
return c
}
func (c *GridContainer) NewZone(ztype string, id string) NodeDef {
z := NewGridZone(ztype, id)
c.AddChild(z)
return z
}
type GridZone NodeDef
func NewGridZone(ztype string, id string) GridZone {
z := NewNode("zone", ztype)
z.SetID(id)
z.RegisterKnownAttributes([]string{"style", "classname", "application", "params",
"title", "application", "size", "sizemin", "sizemax", "selectable", "sortable", "sizeable", "maskable", "editable", "type", "editor", "render", "format", "align"})
z.RegisterKnownChildren([]string{"container", "element", "event", "help"})
return z
}
func (c *GridContainer) NewTemplate(ttype string, name string) NodeDef {
z := NewGridTemplate(ttype, name)
c.AddChild(z)
return z
}
type GridTemplate NodeDef
func NewGridTemplate(ttype string, name string) GridTemplate {
t := NewNode("template", ttype)
t.RegisterKnownAttributes([]string{"name"})
t.RegisterKnownChildren([]string{"container", "element"})
t.SetAttribute("name", name)
return t
}
func (c *GridContainer) NewDataset(dtype string, data string) NodeDef {
z := NewGridDataset(dtype, data)
c.AddChild(z)
return z
}
type GridDataset NodeDef
func NewGridDataset(dtype string, data string) GridDataset {
d := NewNode("dataset", dtype)
d.SetData(data)
return d
}