1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-16 17:53:32 +00:00
Beego/forms/elements/button.go

16 lines
324 B
Go
Raw Normal View History

2014-07-03 15:40:21 +00:00
package elements
type Button struct {
Element
}
func NewButton() *Button {
b := &Button{}
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", "button")
return b
}