Hello.
I have a page used for the configuration of a custom module and in it I have de following:
<dw:GroupBox ID="boxDescription" runat="server" DoTranslation="False" Title="Description"> <table class="formTwoColumnsTable"> <tr> <td class="formTwoColumnsLeftSide" style="vertical-align: top;"> <asp:Label ID="introductionLabel" runat="server" Text="Introduction"></asp:Label> </td> <td class="formTwoColumnsRightSide"> <dw:Editor ID="edtIntroduction" runat="server" Height="250px" /> </td> </tr> <tr> <td class="formTwoColumnsLeftSide" style="vertical-align: top;"> <asp:Label ID="descriptionLabel" runat="server" Text="Description"></asp:Label> </td> <td class="formTwoColumnsRightSide"> <dw:Editor ID="edtDescription" runat="server" Height="250px" /> </td> </tr> </table> </dw:GroupBox>
I am unable to update the information from the edtDescription control. If I update the information, once it is sent to the server the information in it is just the same the client received. The introduction control works fine. Am I doing something wrong? If not, Is there a workaround for it? I tried looking at the parameters in the HttpContext but there was nothing there. What are my options?
Using Dynamicweb 8.3.1.9.
Thanks.
Marco