Hi Telerik Team,
I have a application where users select templates and do some custom editing on the templates that we then print and ship.
Basically we come to the editing page and pull the templates HTML layout into the RadEditor which is set to design mode. After the user is done entering some text in they then save the order, on the back end we are simply saving the Radeditor.content with a update statement like:
Update ordertable SET HTMLContent = '" & RadEditor1.Content.Replace("'", "''") & "'"
The save is happening, but it seems that RadEditor is not saving the table width property correctly. When we pull up the template HTML from our table that holds all our templates we have a table tag with a style="width:300px" but after editing some text in this table and doing our update statement I can see that table tag comes with style="width:0". Users aren't able to edit any of the underlying HTML only text within the table. The problem is seen when users are proofing their layout, we are pulling up the HTML that was saved after their edits in a popup for them to approve, but since the table width property is 0 the layout looks awkward and they are not willing to approve it.
I'm fairly new to using the radeditor, so any help in the right direction is appreciated. Please let me know if any further detail is required.
I have a application where users select templates and do some custom editing on the templates that we then print and ship.
Basically we come to the editing page and pull the templates HTML layout into the RadEditor which is set to design mode. After the user is done entering some text in they then save the order, on the back end we are simply saving the Radeditor.content with a update statement like:
Update ordertable SET HTMLContent = '" & RadEditor1.Content.Replace("'", "''") & "'"
The save is happening, but it seems that RadEditor is not saving the table width property correctly. When we pull up the template HTML from our table that holds all our templates we have a table tag with a style="width:300px" but after editing some text in this table and doing our update statement I can see that table tag comes with style="width:0". Users aren't able to edit any of the underlying HTML only text within the table. The problem is seen when users are proofing their layout, we are pulling up the HTML that was saved after their edits in a popup for them to approve, but since the table width property is 0 the layout looks awkward and they are not willing to approve it.
I'm fairly new to using the radeditor, so any help in the right direction is appreciated. Please let me know if any further detail is required.