silverstripe-autocomplete
silverstripe-autocomplete copied to clipboard
Autocomplete text field for Silverstripe
The code documents each field as: - `displayField`: The field or method used to identify the results. - To me this is the field on the foreign object who's value...
There are ~two~ three core issues: * The source fields parameter in constructor should default to empty array, not `null`. * The check on `isset($this->sourceFields)` in `->getSourceFields()` will always return...
If you place your cursor in `AutoCompleteField` and then either submit your form or refresh the page, the field will maintain focus. When the page initializes with the cursor placed...
Trying to add the ability to attach tags to a File using the Autocomplete Field. While the input shows up, no javascript is present. Including the javascript on the page...
# My Setup Had AutoCompleteField created with - `setRequiredSelection(false)` - `setStoredField('Title')` I didn't want to store an the ID of the look up table. My lookup table only consists of...
When use AutoCompleteFiield on the fronend with Subsite module; the autocomplete field in the frontend fails to call the `Suggest` function without the `SubsiteID` parameter included in the SuggestURL ```...
I hope this is a user error. :) When I remove all references to AutoCompleteField this error does not occur. Please find the full stack trace in the attached pdf...
At the moment you can only return a single database field which prevents you from knowing immediately which ID or DataObject this field belongs to. Adding the hook would allow...