Skip to content

Instantly share code, notes, and snippets.

@pedroelsner
Created August 2, 2012 10:31
Show Gist options
  • Save pedroelsner/3236137 to your computer and use it in GitHub Desktop.
Save pedroelsner/3236137 to your computer and use it in GitHub Desktop.
Combobox - Estado & Cidade - FilterResults
<?php
$list_cidades = array('' => '');
$this->FilterResults->addFilters(
array(
'filter_estado' => array(
'Table.id_estado' => array(
'select' => $this->FilterResults->select('Estado', $this->Table->Estado->find('list'))
)
),
'filter_cidade' => array(
'Table.id_cidade' => array(
'select' => $list_cidades
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment