I am new to yii and I want to change url and reload the current view page on change of a dropdown value which is in the admin's common header field.
Dropdown is
echo $form->dropDownList($siteid, 'selectedsiteid', $data,$htmlOptions, array('class' => "form-control"));
The current urls may be like the following
1. http://localhost/zyntegra_commoditylifev2/admin/sitetag/viewTags/sid/6
2. http://localhost/zyntegra_commoditylifev2/admin/category/viewCategory/sid/
3.http://localhost/zyntegra_commoditylifev2/admin/site/index
Suppose the current changed dropdown value is 10
and If the current url is like (1) one then I need to change the url like this
http://localhost/zyntegra_commoditylifev2/admin/sitetag/viewTags/sid/10
If the current url is like (2) one then
http://localhost/zyntegra_commoditylifev2/admin/category/viewCategory/sid/10
and if it's like the (3) one then there is no need of reload.
Plz somebody help me to solve this problem.
Thanks in Advance