|
![]() |
#1 |
Участник
|
Прошу прощения, я сразу и не понял, что вы хотите чтобы в хроме работало. У меня подобная ситуация с IE была. Вот по этому адресу есть статья, на мой взгляд как раз то, что вы ищите.
Цитата: ... One caveat – it seems that with non-IE browsers (not just Mobile Safari) there are some event ordering issues when you navigate within EP where sometimes the page will come up empty and you have to ‘refresh’ the browser in order to actually see the page. Может добавить это: PHP код:
|
|
![]() |
#2 |
Участник
|
Или вот еще:
Код: 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) |
|
![]() |
#3 |
Участник
|
Цитата:
Сообщение от Dreadlock
![]() Прошу прощения, я сразу и не понял, что вы хотите чтобы в хроме работало. У меня подобная ситуация с IE была. Вот по этому адресу есть статья, на мой взгляд как раз то, что вы ищите.
Цитата: ... One caveat – it seems that with non-IE browsers (not just Mobile Safari) there are some event ordering issues when you navigate within EP where sometimes the page will come up empty and you have to ‘refresh’ the browser in order to actually see the page. Может добавить это: PHP код:
Сдается мне, что эффект связан с применением метода идентификации пользователя. И именно анонимного. Попробовал поэкспериментировать с обычным сайтом на ШэйрПоинте, - ничего такого, открывается в Хроме нормально. |
|
|
|