Hi,
I have an RTE.I am appending the value of a combo Box into the Html
Text of that.My problem is that it is appending it to the next line.
If I set the condenseWhite Property of RTe's textArea to
true ,formatting disappears.
For reference here is a sample of the code:
[Bindable]
public var rteHtmlText:String;
private function fnChange(selected:String):void{
if(selected =='Term ID')
{
rteHtmlText=rteHtmlText.concat('<bc>#T_');
rteHtmlText=rteHtmlText.concat("<FONT
COLOR='#ff0000'>");
rteHtmlText=rteHtmlText.concat("Please Enter");
rteHtmlText=rteHtmlText.concat(selected);
rteHtmlText=rteHtmlText.concat("</FONT>");
rteHtmlText=rteHtmlText.concat('</bc>');
}
In the above code rteHtmlText is binded to htmlText of of the Rich
Text Editor editor.
Please Help!!!
Thanks and Regards,
Leena Jain
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---