1. Go to this page and download the library: Download lifo/autocomplete-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lifo / autocomplete-bundle example snippets
use Lifo\AutocompleteBundle\Form\Type\Select2Type;
$builder->add('user', Select2Type::class, [
'route' => 'users_lookup',
//'url' => '/absolute/url/instead/of/route',
'min_input_length' => 1,
'placeholder' => 'Search for user ...',
]);
$builder->add('users', Select2Type::class, [
'route' => 'users_lookup',
'min_input_length' => 1,
'multiple' => true,
'placeholder' => 'Search for user ...',
]);