{{fullname}}

'; public $options = ['placeholder' => 'Válassz irányítószám']; public $pluginOptions = ['highlight'=>true]; public $scrollable = true; public $display = 'zip'; public $pluginEvents = [ "typeahead:select" => "function(a,b) { }",]; public function init(){ parent::init(); $this->dataset = $this->createDefaultDataset(); } protected function createDefaultDataset(){ return [ [ 'limit' => 20, 'remote' => [ 'ttl' => 1, 'url' => Url::to(['city/zip-list']) . '&search=%QUERY&' . rand(0, 100000000), 'wildcard' => '%QUERY' ], 'limit' => 10, 'display' => $this->display, 'templates' => [ 'notFound' => '
Unable to find repositories for selected query.
', 'suggestion' => new JsExpression("Handlebars.compile('{$this->item_template}')") ] ] ]; } }