I have a display issue in IE when I add meta tag IE Page Transition
In fact, the tools like "BackColor" and "ForeColor" and other like them aren't correctly rendered.
Sample:
My page with those transitions :
<
meta http-equiv="Page-Enter" content="progid:DXImageTransform.Microsoft.Slide(Duration=.5, slideStyle=PUSH)" visible="false"/>
<
meta http-equiv="Page-Exit" content="progid:DXImageTransform.Microsoft.Slide(Duration=.5, slideStyle=PUSH)" visible="false"/>
and my RadEditor :
<
telerik:RadEditor ID="RadEditor1" runat="server" Width="100%" EditModes="Design" Height="180px" Skin="Telerik">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Cut" />
<telerik:EditorTool Name="Copy" />
<telerik:EditorTool Name="Paste" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="ForeColor" />
<telerik:EditorTool Name="BackColor" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="FontName" />
<telerik:EditorTool Name="FontSize" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</Content>
</telerik:RadEditor>
With this, I have 3 line of tools
first contain :
<telerik:EditorTool Name="Cut" />
<telerik:EditorTool Name="Copy" />
<telerik:EditorTool Name="Paste" />
<telerik:EditorSeparator />
<telerik:EditorTool Name="ForeColor" />
second contain :
<telerik:EditorTool Name="BackColor" />
third contain :
<telerik:EditorSeparator />
<telerik:EditorTool Name="FontName" />
<telerik:EditorTool Name="FontSize" />
And if I remove the meta tag, all was correctly displayed.
How can I fix it, because i need page transitions for my project ?
Regards,
Gaƫl
PS : Sorry for my bad english ;)