I really tried, but I believe this is only working for the standard <cc1:Editor ..../> But, when you use the new <asp:HtmlEditorExtender ...> it isn't working.
Does anyone knows the way how to set and get the date in JavaScript when an standard Textbox is extended with the HtmlEditorExtender like:
Pixus
0 Points
1 Post
Get / Set HtmlEditorExtender content via javascript (or jquery)
Mar 25, 2012 03:02 PM|LINK
hello everyone, I have this portion of code
<asp:TextBox ID="descrENG" runat="server" MaxLength="800" TextMode="MultiLine" Columns="50" Rows="8" ></asp:TextBox>
<ajaxToolkit:HtmlEditorExtender ID="editDescENG" runat="server" TargetControlID ="descrENG"/>
How can I set the value via Javascript ? is it possible?
Thank you very much
chetan.sarod...
All-Star
65749 Points
11148 Posts
Re: Get / Set HtmlEditorExtender content via javascript (or jquery)
Mar 26, 2012 03:31 AM|LINK
To get access to control instance on the client, you use the control property on the DOM element it self as follows:
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
ProjectMan
Member
9 Points
18 Posts
Re: Get / Set HtmlEditorExtender content via javascript (or jquery)
May 12, 2012 03:55 PM|LINK
I really tried, but I believe this is only working for the standard <cc1:Editor ..../> But, when you use the new <asp:HtmlEditorExtender ...> it isn't working.
Does anyone knows the way how to set and get the date in JavaScript when an standard Textbox is extended with the HtmlEditorExtender like:
<asp:TextBox ID="txtMessage" runat="server" TextMode="MultiLine" Width="100%" Rows="7"></asp:TextBox>
<asp:HtmlEditorExtender ID="HtmlEditorExtender1" runat="server" TargetControlID="txtMessage">
regards,
arno