This topic is locked
[SOLVED]

Rich Text display

11/27/2024 2:35:24 AM
ASPRunner.NET General questions
S
sevy1971 authorDevClub member

Hi,

With a tri-part (change value) event, I read some values from our database.

In one column, we have stored the value added by the users via the TinyMCE Editor (Rich Text). (Add, Edit ... no problem at all.)

OnServer - event - this value is assigned to HELP1
result["Help1"] = record["Help1"].ToString();

and OnAfter
pageObj.findItem('Help1').text(result["Help1"]);

The Problem is that the HTML code is not rendered correctly and all the HTML tags are displayed.

Could anybody help?
thanks
Yves

S
sevy1971 authorDevClub member 11/27/2024

Solution:

pageObj.findItem('Help1').html(result["Help1"]);

it was to easy!! :-)