1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-16 09:03:31 +00:00
Beego/forms/elements/text.go

16 lines
314 B
Go
Raw Normal View History

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