You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can't select radio buttons because 'for' attribute on label tag is missing. If you go through generated html of below code there will be no 'for' attribute on label tag.
I have same problem, unable to select radio buttons because 'for' attribute on label tag is missing.
{
_id: 'gender',
type: 'radio',
placeholder:'Gender',
displayName: 'Gender',
select:[{
text: "Male",
value: "male",
//label: "male",
},
{
text: "Female",
value: "female",
//label: (for="email"),
}]
}
splendido
added a commit
to meteor-useraccounts/materialize
that referenced
this issue
Aug 21, 2015
You can't select radio buttons because 'for' attribute on label tag is missing. If you go through generated html of below code there will be no 'for' attribute on label tag.
AccountsTemplates.addField({
_id: "fruit",
type: "radio",
displayName: "Preferred Fruit",
select: [
{
text: "Apple",
value: "aa",
}, {
text: "Banana",
value: "bb",
}, {
text: "Carrot",
value: "cc",
},
],
});
The text was updated successfully, but these errors were encountered: