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