1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-05 15:25:12 +00:00
Beego/forms/elements/submit.go

16 lines
324 B
Go
Raw Normal View History

2014-07-03 15:40:21 +00:00
package elements
type Submit struct {
Element
}
func NewSubmit() *Submit {
b := &Submit{}
b.options = make(map[string]interface{})
b.attributes = make(map[string]interface{})
b.labelAttributes = make(map[string]interface{})
b.labelOptions = make(map[string]interface{})
b.SetAttribute("type", "submit")
return b
}