This question is locked. New answers and comments are not allowed.
I'm implementing HTML place holder for the first time. I looked at the examples but the any text formatting isn't working .
I'm getting the HTML form the radrichtextbox using html dataprovider. .I'm setting the RadHtmlPlaceholder.HtmlSource= html provided by the radrichtextbox html data provider
When I copy paste the same text on browser and it does show fine.
I'm placing htmlplaceholder insdie a childwindow.
Here is my code snippet.
Any help would be appreciated.
xaml:
<telerik:RadHtmlPlaceholder x:Name="RadHtmlPlaceholder" Margin="10" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" RespectSilverlightLayoutMeasure="True" />
code behind:
public string HtmlSource {get;set;}
public EmailHtmlPreview(string source) //constructor source is passed down to this window
{
InitializeComponent();
this.HtmlSource = source;
Loaded += new RoutedEventHandler(LayoutRoot_Loaded);
}
void LayoutRoot_Loaded(object sender, RoutedEventArgs e)
{
RadHtmlPlaceholder.HtmlSource = HtmlSource; //binding to the property
}
I'm getting the HTML form the radrichtextbox using html dataprovider. .I'm setting the RadHtmlPlaceholder.HtmlSource= html provided by the radrichtextbox html data provider
When I copy paste the same text on browser and it does show fine.
I'm placing htmlplaceholder insdie a childwindow.
Here is my code snippet.
Any help would be appreciated.
xaml:
<telerik:RadHtmlPlaceholder x:Name="RadHtmlPlaceholder" Margin="10" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" RespectSilverlightLayoutMeasure="True" />
code behind:
public string HtmlSource {get;set;}
public EmailHtmlPreview(string source) //constructor source is passed down to this window
{
InitializeComponent();
this.HtmlSource = source;
Loaded += new RoutedEventHandler(LayoutRoot_Loaded);
}
void LayoutRoot_Loaded(object sender, RoutedEventArgs e)
{
RadHtmlPlaceholder.HtmlSource = HtmlSource; //binding to the property
}