Package Data | |
---|---|
Maintainer Username: | Sukohi |
Maintainer Contact: | capilano.sukohi@gmail.com (Sukohi) |
Package Create Date: | 2015-05-20 |
Package Last Update: | 2016-07-07 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:18:19 |
Package Statistics | |
---|---|
Total Downloads: | 861 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 1 |
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)
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
]
(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>
This package is licensed under the MIT License.
Copyright 2015 Sukohi Kuhoh