How to get and set text for RichTextEditor control in client side?
(Views :1472)

You can get and set text for RichTextEditor from clientside using the following code:

[JavaScript]

//Get Text function GetText()
{
alert(RTE1.GetText());
}

//Set Text function SetText()
{
RTE1.SetText("Hi");
}

Please refer the sample in the link below which illustrates the above:

http://websamples.syncfusion.com/samples/KB/Tools.Web/6.1.0.34/Richtext/main.htm
::adCenter::