Latest News

  • Super Tower Defense 2 Game
    Sep 03, 2010

    New to the games section is Super Tower Defense 2. Featuring more maps, new units and bigger explosions.

  • Super Cards Online Multiplayer Game
    Aug 13, 2010

    Released today in the games section is the new Super Cards multiplayer card game. The aim of the game is to get rid of all your playing cards before your opposition.

  • Silverlight Online Chat
    Jul 24, 2010

    Today we launch the new Silverlight Live Chat application demonstrating the Liquid RichTextBox and Emoticon replacements.

  • New Super Shoot Em Up 2 Game
    Jun 29, 2010

    Added to the Games section is the new Super Shoot 'Em Up 2 game. Take control of your tank with the aim to defeat the computer controlled opponents. Features all new weapons, levels and Battle Mode!

  • Silverlight 4 Controls V5.3.2 Released
    Jun 28, 2010

    This release contains several fixes raised in the forums.

romwilli
romwilli
Loosing Font and color information Posted: Jul 13, 2010
 

After saving and reload the rich text control loose color and font information.

Before saving I had the follow text:

<p style="margin:0px;"><span style="font-size:36px;">Hallo</span></p>

after reload i get

<p style="margin:0px;"><span class="Normal">Hallo</span></p>


Has everyone the same problem?

Thank you for help.

 
 
dan
dan
RE: Loosing Font and color information Posted: Jul 26, 2010
 

Hi romwilli,


I have tested your sample HTML and after reloading it I get the following:


<p style="margin:0px;"><span style="font-family:Verdana;font-size:36px;">Hallo</span></p>


This obviously contains the correct font size, could you tell me how you are reloading it back in?


Thanks!

 
 
romwilli
romwilli
RE: Loosing Font and color information Posted: Aug 04, 2010
 

Sorry for the delay I was in holiday :-)


I' using the control:

 <Liquid:RichTextEditor x:Name="RichTextEditor" Margin="164,272,12,0" Height="185" VerticalAlignment="Top" TabIndex="3"/>


I set and save the text:

RichTextEditor.Html = App.ViewModel.DataBaseValue;

SaveDBValue(RichTextEditor.Html)


in my DB I used string to save the value.

Im using the Liquid.RichText.dll Assembly Version 5.3.2.31987


Thank you for your answer.