This is a migrated thread and some comments may be shown as answers.

When closing a RadWindow with a HtmlPlaceholder the HtmlSource gets displayed on the underlying content

4 Answers 74 Views
HTMLPlaceHolder
This is a migrated thread and some comments may be shown as answers.
Przemyslaw
Top achievements
Rank 1
Przemyslaw asked on 15 Dec 2009, 11:07 AM
Hi,

I have a RadWindow that contains a control with a RadHtmlPlaceholder. Its HtmlSource is bound to a string that contains some html content. The RadWindow shows up properly, you can move it around and the content moves with the window. However, when I close the it the html content is imprinted on the underlying page in the upper, left hand corner. You can see the effect in the attached images where one shows the RadWindow and the other displays what happens when the RadWindow is closed.

regards, Przemek

4 Answers, 1 is accepted

Sort by
0
Simeon
Top achievements
Rank 1
answered on 15 Dec 2009, 02:33 PM
We are experiencing the same issue.  It has only started happening after we installed the SP1 release (2009.3.1208.1030) if that is any help?

I have managed to make the html content disappear by adding an event for the window close and hiding the html control

 

private void WebPageWindow_Closed(object sender, Telerik.Windows.Controls.WindowClosedEventArgs e)

 

{

    HtmlPlaceholder.Visibility =

Visibility.Collapsed;

 

}


That seems to sort the problem out.

Cheers,

0
Bobi
Telerik team
answered on 16 Dec 2009, 02:33 PM
Hello Przemyslaw Soszynski

Is it possible to send us some sample code in order to fix this issue?
Untill then you can used the suggested solution:
private void WebPageWindow_Closed(object sender, Telerik.Windows.Controls.WindowClosedEventArgs e)
{
    HtmlPlaceholder.Visibility = Visibility.Collapsed;
}


Regards,
Boryana
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
James
Top achievements
Rank 1
answered on 27 Jul 2010, 07:31 PM
I am also seeing this problem, the workaround worked.
0
Vladislav
Telerik team
answered on 29 Jul 2010, 09:17 AM
Hello all,

Just a follow up for this issue.
The problem is resolved and you shouldn't use anymore the workaround supplied.
The fix is available with our latest internal build (from 23.07.2010) and you can try it against the released binaries.
This fix will be also included in our upcoming official SP1 release, which is expected in the middle of August.

Kind regards,
Vladislav
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
HTMLPlaceHolder
Asked by
Przemyslaw
Top achievements
Rank 1
Answers by
Simeon
Top achievements
Rank 1
Bobi
Telerik team
James
Top achievements
Rank 1
Vladislav
Telerik team
Share this question
or