Hi forum,
I'm evaluating CuteEditor for my company (we are looking for an web editor for our online application). Using your cool editor I have found some strange behavior
1) Using Firefox 3.0 the html code is automatically formated where switch from HTML to NORMAL view. I have set to false the option DisableAutoFormatting and it work fine with IE but using FF the problem persist. Is this a known bug? or I miss something.
Generally I have no problem with the HTML formatting, but this is applied to javascript too ..
if the editor I write
output = '<table border="1">"n';
output += '<thead><tr><td>Widget ID</td><td>Views</td></tr></thead>"n';
output += '<tbody>"n';
It's formatted i this way
output = '
<table border="1">
"n';
output += '
<thead>
<tr>
<td>Widget ID</td>
<td>Views</td>
</tr>
</thead>
"n';
giving an error when the script is executed (new line in constant!)
2) If in the HTML mode (using IE) I write:
<html>
<head>
</head>
<body style="padding-right: 3px; padding-left: 3px; padding-bottom: 3px; padding-top: 3px" onload="alert('tex' );">
<br />
</body>
</html>
when I switch to the normal mode the js instruction it the onload event is executed
It's possible to disable this behavior?
Thanks a lot,
Luca Tessitore
PS
In your opinion it's possible to use CuteEditor as HTML/JAVASCRIPT editor?