tractorcow / silverstripe-autocomplete
Autocomplete text field for Silverstripe
Installs: 267 032
Dependents: 7
Suggesters: 0
Security: 0
Stars: 36
Watchers: 3
Forks: 31
Type:silverstripe-vendormodule
Requires
README
Autocomplete text field for Silverstripe
usage
A field can be created as follows...
\TractorCow\AutoComplete\AutoCompleteField::create('MyTextField','My Text Field', '','LookupDataObject','LookupFieldName')
where it will accept values from the following dataobject field...
class LookupDataObject extends DataObject { static $db = array( 'LookupFieldName' => 'Varchar', ); }