-
Notifications
You must be signed in to change notification settings - Fork 1
/
html_tablecell.go
140 lines (120 loc) · 3.06 KB
/
html_tablecell.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package html5
// HTMLTableCell represents HTML <tablecell> tag
type HTMLTableCell struct {
HTMLElement
}
// TableCell creates an HTML <tablecell> tag element
func TableCell() *HTMLTableCell {
e := &HTMLTableCell{}
e.a = make(map[string]interface{})
e.tagName = "tablecell"
return e
}
// S sets the element's CSS properties
func (e *HTMLTableCell) S(style StyleMap) *HTMLTableCell {
e.HTMLElement.S(style)
return e
}
// Key sets virtual dom's special property to instruct the diffing mechanism
// to reorder the node instead of replacing it
func (e *HTMLTableCell) Key(key interface{}) *HTMLTableCell {
e.key = F(key)
return e
}
// Ref marks the dest pointer to receive the real DOM element on render.
// Useful for getting live value of an input element, for example.
func (e *HTMLTableCell) Ref(dest *DOMElement) *HTMLTableCell {
e.ref = dest
return e
}
// ColSpan sets the element's "colspan" attribute
func (e *HTMLTableCell) ColSpan(v int) *HTMLTableCell {
e.a["colspan"] = v
return e
}
// RowSpan sets the element's "rowspan" attribute
func (e *HTMLTableCell) RowSpan(v int) *HTMLTableCell {
e.a["rowspan"] = v
return e
}
// Scope sets the element's "scope" attribute
func (e *HTMLTableCell) Scope(v string) *HTMLTableCell {
e.a["scope"] = v
return e
}
// Abbr sets the element's "abbr" attribute
func (e *HTMLTableCell) Abbr(v string) *HTMLTableCell {
e.a["abbr"] = v
return e
}
// ID sets the element's "id" attribute
func (e *HTMLTableCell) ID(v string) *HTMLTableCell {
e.a["id"] = v
return e
}
// Class sets the element's "class" attribute
func (e *HTMLTableCell) Class(v string) *HTMLTableCell {
e.a["class"] = v
return e
}
// Title sets the element's "title" attribute
func (e *HTMLTableCell) Title(v string) *HTMLTableCell {
e.a["title"] = v
return e
}
// Lang sets the element's "lang" attribute
func (e *HTMLTableCell) Lang(v string) *HTMLTableCell {
e.a["lang"] = v
return e
}
// Translate sets the element's "translate" attribute
func (e *HTMLTableCell) Translate(v bool) *HTMLTableCell {
if v {
e.a["translate"] = ""
} else {
delete(e.a, "translate")
}
return e
}
// Dir sets the element's "dir" attribute
func (e *HTMLTableCell) Dir(v string) *HTMLTableCell {
e.a["dir"] = v
return e
}
// Hidden sets the element's "hidden" attribute
func (e *HTMLTableCell) Hidden(v bool) *HTMLTableCell {
if v {
e.a["hidden"] = ""
} else {
delete(e.a, "hidden")
}
return e
}
// TabIndex sets the element's "tabindex" attribute
func (e *HTMLTableCell) TabIndex(v int) *HTMLTableCell {
e.a["tabindex"] = v
return e
}
// AccessKey sets the element's "accesskey" attribute
func (e *HTMLTableCell) AccessKey(v string) *HTMLTableCell {
e.a["accesskey"] = v
return e
}
// Draggable sets the element's "draggable" attribute
func (e *HTMLTableCell) Draggable(v bool) *HTMLTableCell {
if v {
e.a["draggable"] = ""
} else {
delete(e.a, "draggable")
}
return e
}
// Spellcheck sets the element's "spellcheck" attribute
func (e *HTMLTableCell) Spellcheck(v bool) *HTMLTableCell {
if v {
e.a["spellcheck"] = ""
} else {
delete(e.a, "spellcheck")
}
return e
}