Ionic-framework: bug: Radio and checkbox problem in alert

Created on 20 Feb 2016  ·  3Comments  ·  Source: ionic-team/ionic-framework

Type: bug

Ionic Version: 2.x

Platform: desktop browser

Radio and checkbox not showing correctly when i add them with prompts in alert

https://forum.ionicframework.com/uploads/default/original/3X/b/6/b68c9c6ecbd4774899b82a29c36371bef461ff75.png

All 3 comments

Would you be able to provide a code example of how you're writing this?
https://github.com/driftyco/ionic/blob/2.0/ionic/components/alert/test/basic/index.ts#L122

Yes , I do this example, It's work when I add radio buttons only, but it doesn't work when I add them with inputs

let alert = Alert.create({
title: "Alert",
inputs:
[
{
name : 'FirstName',
placeholder: "FirstName"
},
{
name: "LastName",
placeholder: "LastName"
},
{
name: "Phone",
placeholder: "Phone"
},
{
name: "E-mail",
placeholder: "E-mail"
},
{
type: "radio",
label: "male",
value:"m"
},
{
type: "radio",
label: "female",
value:"f"
},
],
buttons: [
{
text: 'Cancel',
handler: data => {
console.log('Cancel clicked');
}
},
{
text: 'Save',
handler: data => {
console.log('Saved clicked');
}
}
]
});
this.nav.present(alert);

And the same think when I add buttons and inputs with alert.addInput({})

The alert does not allow mixing different types of inputs, like radio and checkboxes, or radio and inputs. I just updated the docs with that info, and also created a warning within the framework. Thanks

https://github.com/driftyco/ionic/commit/74a48f3b64f9613d9ff8992c6bd17de0f743bbed

Was this page helpful?
0 / 5 - 0 ratings

Related issues

manucorporat picture manucorporat  ·  3Comments

SebastianGiro picture SebastianGiro  ·  3Comments

brandyscarney picture brandyscarney  ·  3Comments

daveshirman picture daveshirman  ·  3Comments

danbucholtz picture danbucholtz  ·  3Comments