Answer the question
In order to leave comments, you need to log in
Multiple Autocomplete search for form text field?
Guys, I'm dumb. Tell me, in general, there is a form with a text field, to which autocomplete is attached, the callback itself looks like this:
<?php
function searchform_autocomplete_search($string) {
$matches = array();
$result = db_select('field_data_field_sku', 't')
->fields('t', array('field_sku_value'))
->condition('field_sku_value', '%' . db_like($string) . '%', 'LIKE')
->range(0, 10)
->execute()
->fetchAll();
foreach ($result as $row) {
$matches[$row->field_sku_value] = check_plain($row->field_sku_value);
}
drupal_json_output($matches);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question