sukohi / form-autocomplete
A PHP package mainly developed for Laravel to generate form input tags of Bootstrap that can automatically display errors, labels and alerts.
2.0.0
2015-08-31 21:57 UTC
Requires
- laravel/framework: ~5.0
This package is not auto-updated.
Last update: 2024-11-09 18:22:09 UTC
README
A PHP package mainly developed for Laravel to generate javascript tag for auto-complete through jQuery UI.
(This is for Laravel 5+. For Laravel 4.2)
Installation
Add this package name in composer.json
"require": {
"sukohi/form-autocomplete": "2.*"
}
Execute composer command.
composer update
Register the service provider in app.php
'providers' => [
...Others...,
Sukohi\FormAutocomplete\FormAutocompleteServiceProvider::class,
]
Also alias
'aliases' => [
...Others...,
'FormAutocomplete' => Sukohi\FormAutocomplete\Facades\FormAutocomplete::class
]
Requirement
Usage
(in View)
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<!-- jQuery UI -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<!-- Input -->
<input id="title_1" type="text">
<input id="title_2" type="text">
<input id="title_3" type="text">
<script>
$(document).ready(function(){
// Using Array
{!! FormAutocomplete::selector('#title_1')->source(['aaaaa', 'bbbbb', 'cccccc']) !!}
// Using Closure
{!! FormAutocomplete::selector('#title_2')->source(function(){
return \Item::where('id', '>', 2)->lists('title'); // You need to return array values.
}) !!}
// Using Table and column
{!! FormAutocomplete::selector('#title_3')->db('items', 'title') !!}
});
</script>
License
This package is licensed under the MIT License.
Copyright 2015 Sukohi Kuhoh