Hi,
I am using DNN version 9.10.02. I am using the texteditor control
<dnn:texteditor id="txtContent" name="txtContent" runat="server" height="400" width="100%">
and I want to set the value for this control. I tried to insert a value using JQuery's val() and text() functions, but both of them didn't work. I am able to get the text inside the texteditor using these two functions, but not able to set values using them.
Try the following:
Edit.ascx:
<dnn:textEditor id="txtContent" runat="server" height="400" width="100%" ChooseMode="false">
Edit.ascx.cs
txtContent.Text = "Hello world!"
You might want to have a look at the HtmlText module's markup and code as an example.
Happy DNNing! Michael
These Forums are dedicated to the discussion of DNN Platform.
For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:
Awesome! Simply post in the forums using the link below and we'll get you started.