PHP code example of phloxcz / forms-combobox
1. Go to this page and download the library: Download phloxcz/forms-combobox library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phloxcz / forms-combobox example snippets
use Phlox\Forms\ComboBox\ComboBoxInput;
$form->addComboBox('countryId', 'Country', $this->link('searchCountry!'))
->setSelection($this->db->table('countries'), 'id', 'name')
->setLimit(30)
->setTheme(ComboBoxInput::THEME_BOOTSTRAP);
public function handleSearchCountry(string $q = ''): void
{
$this->sendJson($this['form']['countryId']->fetchData($q));
}