Borales / yii2-phone-input

Yii2 International telephone numbers
Other
135 stars 55 forks source link

how to set 'id' value for the phone input ? #28

Open michaelnguyen2021 opened 7 years ago

michaelnguyen2021 commented 7 years ago

I tried lot of things to set id attribute for phone input HTML tag but none of them work

<?= $form->field($parent, 'primary_phone', ['options' => ['class' => 'col-md-4'], 'selectors' => ['input' => '#parent1-primary-phone']])
->widget(PhoneInput::className(['id' => 'test']), [
    'jsOptions' => [
        'allowExtensions' => true,
        'preferredCountries' => ['ca', 'lb'],
        'nationalMode' => false
    ],
    'defaultOptions' => [
        'class' => 'form-control1',
        'id' => 'test'
    ]
]); ?>

Did I miss something ?

Borales commented 7 years ago

@michaelnguyen547 try like this

$parent, 'primary_phone', ['options' => ['class' => 'col-md-4', 'id' => 'myID']