Hello,
In my HTML page there are used special comment-like blocks which are necessary for proper rendering in various browsers.
The part of the content is like this:
I have disabled all filters in RadEditor ContentFilters="None".
When I load such page in RadEditor running on Firerfox then everything is fine and I can edit the contents without problems.
However, when I launch the same application in IE, the part with non-IE specific block
is completely removed by the editor thus effectively destroying my layout because <ul> opening tag will be missing.
Is it possible to avoid this behaviour i.e. keep HTML markup untouched upon loading the contents of editor from external file?
Please do not advice to move my inline style attribute to external CSS file. I've tried this approach and it didn't work. This coding is the only way how to achieve that my page layout is consistent across different browsers.
Thanks in advance for your reply!
In my HTML page there are used special comment-like blocks which are necessary for proper rendering in various browsers.
The part of the content is like this:
| <!--[if lte IE 7]> |
| <ul style="display: inline"> |
| <![endif]--> |
| <![if !IE]> |
| <ul> |
| <![endif]> |
When I load such page in RadEditor running on Firerfox then everything is fine and I can edit the contents without problems.
However, when I launch the same application in IE, the part with non-IE specific block
| <![if !IE]> |
| <ul> |
| <![endif]> |
Is it possible to avoid this behaviour i.e. keep HTML markup untouched upon loading the contents of editor from external file?
Please do not advice to move my inline style attribute to external CSS file. I've tried this approach and it didn't work. This coding is the only way how to achieve that my page layout is consistent across different browsers.
Thanks in advance for your reply!
