IE 11 мерцает в потоке процессов CRM онлайн 2015 +

563
Cédric Boivin

В настоящее время я использую CRM online 2015 и получаю опцию «мерцание», когда пытаюсь изменить значение только в IE 11.

Если я активирую «прежний режим», мерцания не будет.

Я пытаюсь опубликовать какой-нибудь пост для рендеринга с помощью softawre, опции в IE в расширенной панели.

Ничего не работает. Любое предложение ?

Проблема есть в Win 7, Win 8, Win 10 в IE 11. Проблема не в Chrome, Edge или Firefox.

0

1 ответ на вопрос

1
Frantz Nappert

this problem is due to the fact that there is no height specified for the div of the main container of the business process flow. When the optionSet opens, it overlaps the main container height size. The solution for this problem is to set the height of the main business process flow div (div with id "processStepsContainer"). I suggest you create a Web Resources that is a Style Sheet(CSS) and that sets this:

#processStepsContainer{ height: 200px; } 

Then you just need to use a link on this style. You can do it using a javascript on the load of a form that calls the FixFlicker function:

FixFlicker = function(){ var head = window.parent.window.document.getElementsByTagName('head')[0]; var link = window.parent.window.document.createElement('link'); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = '/WebResources/theNameOfMyStyleSheet'; link.media = 'all'; head.appendChild(link); } 

This should solve your problem

Похожие вопросы