Checkbox
Checkbox proton for forms.
CheckboxBosons
Error
Is there any error.
type:
bool
default:
false
Attrs
Sets attributes in the html tag.
type:
gopress.Attrs
Examples
Standard checkbox
default
error
disabled
1// Default checkbox
2@protons.Checkbox(&protons.CheckboxBosons{})
3
4// Checkbox with error
5@protons.Checkbox(&protons.CheckboxBosons{Error: true})
6
7// Disabled checkbox
8@protons.Checkbox(&protons.CheckboxBosons{Attrs: gopress.Attrs{
9 "disabled": "",
10}})