Download the PHP package otago/autocomplete-suggest-field without Composer
On this page you can find all versions of the php package otago/autocomplete-suggest-field. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download otago/autocomplete-suggest-field
More information about otago/autocomplete-suggest-field
Files in otago/autocomplete-suggest-field
Package autocomplete-suggest-field
Short Description Autocomplete Suggestion Field
License BSD-3-Clause
Informations about the package autocomplete-suggest-field
Auto-Complete Dropdown with Custom Data
Enhance your forms with a dynamic auto-complete dropdown that allows for custom data sources, making it easier to integrate external APIs or custom search methods.
Why Use This?
✅ Flexible & Powerful – Works with Varchar
, Text
, has_one
, and even many_many
relationships.
✅ Simple & Clean – Uses closures for a neat, efficient search method without complex controllers.
✅ Customizable – Supports external APIs, hardcoded arrays, and SilverStripe relationships.
Examples
Data must be returned in a 'value' 'label' key pair.
Using an External API (e.g., Microsoft Graph)
If you're fetching data from an external API, like Microsoft Graph, you can structure your search method as follows:
Using a Hardcoded Array (e.g., has_one Relationship)
Need a simple dropdown with predefined options? This example saves against a Member
has_one relationship:
Using a many_many Relationship
Want multi-selection? This works with many_many
relationships using setIsMultiple(true)
, allowing multiple selections.
Compatibility
- SilverStripe 5+ – Use this package for the latest version.
- SilverStripe 4.* – Use version
4.0
. - SilverStripe 3.* – Use version
3.0
.
For DataObjects in SilverStripe 5.2+, consider using the built-in SearchableDropdownField
for simpler internal searches.
Installation
Install via Composer:
Features
- Custom Autocomplete – Define what data appears in the dropdown.
- User-Friendly Labels – Display meaningful names instead of raw database IDs.
- CMS-Friendly – Keeps your admin panel clean and intuitive.
Running Tests
Ensure everything works correctly with:
Now you're all set to implement a powerful and flexible autocomplete dropdown in your SilverStripe project! 🚀