Creating a dependent dropdown

Comparing #8 with #9

Revision #9 was created by Imdad Hussain Imdad Hussain on Dec 30, 2011, 6:41:38 AM.

Need to Enter Current Controller name before in $_POST array because yii Post Multi Dimentional array like $_POST['User']['country_id'] etc (yii 1.8)

Content

[...]
```php
public function actionDynamiccities()
{
//please enter current controller name because yii send multi dim array 
 
$data=Location::model()->findAll('parent_id=:parent_id', array(':parent_id'=>(int) $_POST['Current-Controller']['country_id']));

$data=CHtml::listData($data,'id','name');
foreach($data as $value=>$name)
{
echo CHtml::tag('option',
[...]