$form = User::model()->findByPk($id);
$form->name = 'name';
if ( $form->validate(array('name')) ) {
$user->update();
} <head>
...
<base target="_parent" />
...
</head>var newBase = document.createElement('base');
newBase.target = '_parent';
window.frames[0].getElementsByTagName('head')[0].appendChild(newBase);