yii2-multiple-input
yii2-multiple-input copied to clipboard
Not working with bootstrap 4 and jQuery JavaScript Library v3.4.1.
How to use unclead/yii2-multiple-input with bootstrap 4 and jQuery JavaScript Library v3.4.1?
<?= $form->field($model, 'details')->widget(MultipleInput::className(), [
'columns' => [
[
'name' => 'attr',
'title' => 'Attribute',
'value' => function($data) {
return $data['day'];
},
],
[
'name' => 'value',
'title' => 'Value',
'enableError' => true,
'options' => [
'class' => 'input-priority'
]
]
]
]);
?>
Uncaught TypeError: jQuery(...).multipleInput is not a function jquery.min.js:2 Uncaught TypeError: jQuery(...).multipleInput is not a function
@Husniddinuz nobody has adapted the widget for bootstrap 4 yet, but PR is always welcome.