Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a frameset in yii application like this:

|     main menu     |
|-------------------|
|         |         |
|content1 | content2|
|         |         |
|-------------------|
|      footer       |

Now I have a login page at 'content1' and want to refresh all frames after login.

If I add

<form ... onsubmit="document.parent.refresh()">

into login form, it's refreshed before it's logged in. There must be better way to do that?

share|improve this question
If you add what? Are all the frames on the same domain? – ldg Aug 19 '11 at 2:29
sorry, the HTML code was hidden in my question. All the frames are in the same domain. – zuups Aug 23 '11 at 8:08

1 Answer

Your almost there with the document.parent.refresh() just in the wrong place. The onsumbit event is fired when the form is submitted before the page and thus login happens. What you need to do is refresh the parent frame after the login.

Add the following code to your login action of the controller:

Yii::app()->clientScript->registerScript('reloadParent', 'document.parent.refresh();', CClientScript::POS_LOAD);

All this does is add the 'document.parent.refresh()' to the html of the page.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.