Показать сообщение отдельно
Старый 02.04.2013, 17:26   #15  
Dreadlock is offline
Dreadlock
Участник
Аватар для Dreadlock
 
298 / 224 (8) ++++++
Регистрация: 07.05.2009
Адрес: Москва
Или вот еще:

Код:
I know this is an old thread, but I believe I have a solution that works.

In the master page (AOT/Web/Web files/Static Files/defaultax), there is a control that makes a page auto-refresh, whenever you use the back button on the browser.

<Dynamics:AxRefreshOnBackButton ID="AxRefreshOnBackButton1" runat="server" />

You can either remove this (and loose the function on ie8), or you can add the following script just before the </body> tag
<script language="javascript" type="text/javascript">
    setTimeout(showAspForm, 500);
   
    function showAspForm() {
        if (!DynamicsCommon.IsNull($get('__axr_iframe')) && $get('aspnetForm').style.display == 'none') {
            $get('aspnetForm').style.display = '';
        }
    }

</script>

"push" the changed file to the filesystem, and it should work with all the browsers.

Only thing is, that a page still won't auto-refresh-on-back on any new browsers. (this only works in ie8)
Источник