Reputation: 3121
In Laravel 10 / jquery: 3.6.1 app with laravelcollective/html 6.2 library I need pass multiselect parameters to post request and having select :
<div class="flex-grow-1 w-100">
{!! Form::select(
'itemStatus[]',
$itemStatusItems,
null,
[
'class' => 'form-control selectpicker',
'multiple' => true,
'data-none-selected-text' => trans('Item Status'),
],
$itemStatusSelected,
) !!}
</div>
I call JS function where I need to pass multiple parameters:
function showtItems() {
// lI got error : items?d=:787 Uncaught TypeError: $(...).multiselect is not a function
let itemStatus = $('#itemStatus').multiselect();
$.ajax({
url: '{{ route('getData', $point->id ) }}',
type: 'post',
data: {itemStatus: itemStatus},
success: function (data) {
...
}
}).done().fail(function (data) {
...
});
point.stopPropagation();
return false;
}
Is it a valid way to get selected items ? In the net I found some examples like that, but error in imuy case...
Upvotes: 0
Views: 62