Download the PHP package benmanu/silverstripe-autocomplete without Composer
On this page you can find all versions of the php package benmanu/silverstripe-autocomplete. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download benmanu/silverstripe-autocomplete
More information about benmanu/silverstripe-autocomplete
Files in benmanu/silverstripe-autocomplete
Package silverstripe-autocomplete
Short Description Autocomplete field that can be used as a SilverStripe form field
License BSD-3-Clause
Homepage http://github.com/benmanu/silverstripe-autocomplete
Informations about the package silverstripe-autocomplete
AutocompleteField
Overview
This is a basic autocomplete field that can be used as a SilverStripe form field which provides a suggestion list based on the current text that has been entered into the field.
It uses a custom component built in VueJS to handle the autocomplete. The custom component depends on the https://github.com/paliari/v-autocomplete npm module.
Installation
You can install this via:
composer require benmanu/silverstripe-autocompletefield
Javascript Development
This module has https://github.com/JeffreyWay/laravel-mix as an npm dependency which makes it easy to do future javascript development for the module.
To get everything setup you just need to run:
yarn install
Once all the npm packages have been installed you can start javascript development using either:
yarn run dev
: which will start a watch task that rebundles the src files when files
in the javascript/src/
folder are updated.
yarn run prod
: which you will want to run when finished to produce a production ready
build of the javascript src files.
TODO
There are a bunch of enhancements that will eventually be added such as:
- Ability to suggest based on an AJAX response
- Ability to customise more options such (e.g. min length of characters before suggesting) when creating the PHP field
- Ability to pass in a DataList and have it automatically turn that into suggestion data