Quantcast
Channel: Ionic Forum - Latest topics
Viewing all articles
Browse latest Browse all 70612

Alert inputs radio not working correctly with prompts

$
0
0

@big_bill91 wrote:

Hello world

Hello world, I need help please, prompt alert work correctly but when I add radio, it's shown like a simple radio in html

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');
 }
 }
 ]
 });

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 70612

Trending Articles