IE 11 flackert im Prozessablauf CRM online 2015 +

659
Cédric Boivin

Ich verwende derzeit CRM Online 2015 und erhalte die Option "Flackern", wenn ich versuche, den Wert nur für IE 11 zu ändern.

Wenn ich den "Legacy-Modus" aktiviere, ist das Flimmern nicht vorhanden.

Ich versuche ein paar Post-forece-Rendering durch die Software, eine Option in IE im erweiterten Panel.

Nichts geht. Irgendein Vorschlag ?

Das Problem ist dort unter Win 7, Win 8, Win 10 unter IE 11. Das Problem ist nicht auf Chrome, Edge oder Firefox vorhanden.

0

1 Antwort auf die Frage

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