Gossamer Forum
Home : Products : Others : Fileman :

WYSIWYG

Quote Reply
WYSIWYG
Sorry, I haven't fully understood IS THERE WYSIWYG -feature or not ?

When I write text to text area of "New file" (and save it), new file will be in plain text mode.

Quote Reply
Re: WYSIWYG In reply to
Hi,

You must use IE 5.5 to use the HTML editor.

Cheers,

Alex

--
Gossamer Threads Inc.
Quote Reply
Re: WYSIWYG In reply to
I've IE6-pre ...
I found some kind of solution:

CHANGE LINES (file_editor.html) FROM 65:

<script>
var ver = window.navigator.appVersion;
if (ver.search('MSIE')) {
var IEindex = ver.indexOf("MSIE");
var IEver = ver.substring((IEindex + 5),(IEindex + 8));

if (IEver > 5.5) {
document.write('<td width=20% align=right>');
document.write('<input type=submit name="switch_edit" value="<%if use_html%>Switch to Text');
document.write('<%else%>Switch to HTML<%endif%>"> </td>');
}
}
</script>

==================================

Now it works just great !! :):)