All Questions
Tagged with jquery-ui-autocomplete laravel
17 questions
1
vote
1
answer
587
views
Cannot do autocomplete on laravel 8 - Base table or view not found: 1146 Table 'workshop.nama_suppliers' doesn't exist
When I tried to do autocomplete on Laravel 8, the error is like this when i do inspection in my browser
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'workshop.nama_suppliers' doesn't ...
1
vote
1
answer
138
views
Laravel Autocomplete using Jquery is not fetching data if the table column name isn't 'name'
I am using Jquery and Laravel 5.7 to make an autocomplete feature.
I have a table named 'pricings' there is no column in that table named 'name'. When I search through a keyword it returns nothing.
&...
0
votes
1
answer
619
views
Jquery-ui Auto complete with dynamic input field and multi dimension array in Laravel
I need to add products for sale with dynamic input field. The field use autocomplete from Jquery ui and later I want to fetch both ui.label and ui.value.
My dynamic Input Field Code
$(document)....
2
votes
2
answers
382
views
Bootstrap Tokenfield show empty tags list. Laravel App
I have a problem with autocomplete.
Firslty I get an array with tags:
var tagsList = @json(\App\Helpers\Clients::getTags());
And then:
$('#tags').tokenfield({
beautify:false,
...
0
votes
1
answer
913
views
Laravel jquery autocomplete data fetching from json are not being displayed in view
I was setting up the autocomplete function to my project and I think i got the logic well but the datas are not being displayed on the input.
Controller:
Public function autoComplete(Request $...
0
votes
1
answer
624
views
Problem Edit data devbridge/jQuery-Autocomplete
hello a greeting when I try to edit a record in ajax comes
{"suggestions": [{"value": "Pendiente","data": 1},{"value": "Programar","data": 2},}
but when I edit the record it brings me the number I ...
-1
votes
2
answers
58
views
Change the format of JavaScript array when source is PHP
I am currently working on laravel and my project requires me to use autocomplete for dropdowns.
However, the object returned from the following
$companies = Companies::all()->pluck('company_name'...
0
votes
0
answers
81
views
How to show a message saying that no results correspond to the search in Autocomplete search?
I have the code below, when the user enter 3 letters in the autocomplete search field it appears the results, if there are results.
For example if the user introduce 3 letters for a conference name ...
0
votes
1
answer
2k
views
CSRF token error? on laravel Symfony\\Component\\HttpKernel\\Exception\\HttpException
first was ok. second got error
I use the ajax function on javascript page in laravel
If I initiate the function once it work well
But when I start the function 2 or 3 times in short time I got the ...
0
votes
1
answer
254
views
Searching through database and the speed is slow
I am using Laravel jQuery UI autocomplete to search through the database. It works but it's so slow. I know I have 38432 items in my database but I don't know if that is the problem. How do I make the ...
2
votes
1
answer
657
views
Laravel jQuery auto-complete speed
I am using Laravel. The autocomplete speed is slow. I know that it might be due to the fact that I have a lot of information my database. I have a total of 38432 rows in the table. But I'm sure ...
0
votes
0
answers
370
views
how can i add image in autocomplete search jquery in laravel
public function search(Request $request){
$search = $request->term;
$users = User::where('name','LIKE','%'.$search.'%')
->orWhere('username','LIKE','%'.$search.'%')->get();
...
0
votes
1
answer
330
views
how to make Autocomplete show data from another table using foreign key according to "where" condition
i have created an auto complete search box in 'booking' table successfully , but i want the auto complete search box to show data from table 'patient' according to a specific condition using 'where' ...
2
votes
2
answers
1k
views
Selected autocomplete value not displaying in input box
I am using jquery ui autocomplete and the values were displaying but when i select a value from the list it is not displaying inside the input box.. I used console.log for select : function , the ...
0
votes
1
answer
76
views
Autocomplete js placeholder is not working with Form::select laravel 4
I am using laravel 4 and autocomplete 1.2.21 (https://github.com/devbridge/jQuery-Autocomplete)
{{ Form::select('port',$port,null, array('class'=>'form-control combo','id'=>'port','placeholder'...