Won't Fix
Last Updated: 01 Nov 2017 14:55 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: HtmlPlaceHolder
Type: Bug Report
7
MouseWheel does not work when setting an HtmlSource.
Unplanned
Last Updated: 25 Jul 2017 10:17 by ADMIN
Unplanned
Last Updated: 23 Mar 2017 09:24 by ADMIN
The control is misplaced when you zoom in/out the browser window.

To work this around you can manually calculate and set the top and left positions of the HTML presenter. 

this.htmlPlaceholder.Loaded += (sender, args) => { this.htmlPlaceholder.LayoutUpdated += htmlPlaceholder_LayoutUpdated; };

private void htmlPlaceholder_LayoutUpdated(object sender, EventArgs e)
{
    this.Dispatcher.BeginInvoke(delegate
    {
        double controlTop = GetTop();
        double controlLeft = GetLeft();
 
        htmlPlaceholder.HtmlPresenter.SetStyleAttribute("top", controlTop + "px");
        htmlPlaceholder.HtmlPresenter.SetStyleAttribute("left", controlLeft + "px");
    });           
}
Unplanned
Last Updated: 04 Jan 2017 06:34 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
1
The HtmlPlaceholde does not respect the applied Scale Transformations.
Unplanned
Last Updated: 23 Aug 2016 15:19 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
1
When placed in a horizontal PanelBar, the HtmlPlaceholder is not rendered.
Completed
Last Updated: 11 Aug 2016 14:05 by ADMIN
When displayed inside a RadWindow, if the window is moved outside the browser, the placeholder gets cut off.
This issue also appears if initally the left side of RadWindow is positioned outside the browser.
Completed
Last Updated: 11 Aug 2016 14:05 by ADMIN
The RadHtmlPlaceholder control gets misplaced when displayed inside a RadWindow in a zoomed browser. The issue can be reproduced in the HtmlPlaceholder WindowIntegration demo example.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Tina Stancheva
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
1
The control doesn't work in Safari
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
1
Does not display properly when placed in StackPanel.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
1
RadHtmlPlaceholder does not respect the EnableAutoZoom property.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
"Value does not fall withing the expected range" exception is thrown when displayed in a tooltip in a RadMap
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
1
SetProperty fails on HtmlPresenter.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
When PDF is shown, setting visibility to collapsed makes the web page blank
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
When the HtmlPlaceholder is placed in an ItemTemplate of a ListBox and if the HtmlPlaceholder.KeepContentInMemory is set to True, the control is rendered twice - in the ListBoxItems and in the top left of the page
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
2
Incorrect rendering under Mac and Safari
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
OnUnload/OnBeforeUnload do not fire after changing SourceUrl
Unplanned
Last Updated: 11 Aug 2016 14:04 by John
Created by: John
Comments: 7
Category: HtmlPlaceHolder
Type: Bug Report
9
This only happens in IE8.  IE9, Chrome, FF3 and FF4 all work okay.  As soon as the componenet is set to visible the scrollbar appears because something has been added to the body html.  The suggested workaround to have the body style overflow set to hidden
Unplanned
Last Updated: 11 Aug 2016 14:04 by asking
Does not resize correctly in IE when surrounded by GridSplitters
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
3
The control cannot be placed inside ToolTip ContentTemplate
Unplanned
Last Updated: 03 Aug 2016 13:21 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: HtmlPlaceHolder
Type: Bug Report
0
When placed in scrollviewer and browser is resized in order to appear the scrollbar, HTMLPlaceHodler doesn`t render correctly. The issue can be reproduced in both scenarios - setting the HtmlSource or SourceUrl property.
1 2