Hi,
I use RTE Editor for VB.NET and I've to assign value to editor from code Behind with a simple
Editor_control.Text = "<div position:absolute;left:10px;top:20px;"">HELLO</div>"
But when I load control on page and work on it the code is <div style="left:10px;top:20px;">HELLO</div>
Why it lost [position:absolute ] ??? If I set position:absolute from visual mode it's ok.
Pleas help me
Thanks
Hi eurogest03,
Please open file \richtexteditor\config\default.config, find section below.
<security name="StyleBlackList">position,visibility,display</security>
Change it to
<security name="StyleBlackList">visibility,display</security>
Regards,
Ken