Hi,
I'm new to FckEditor, so please direct me , if this query has already been resolved.
In the following piece of code in fckeditor.html :
function LoadScript( url ) { document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '"><\/scr' + 'ipt>' ) ; }
the url in the src instead of being appended by the '+' sign , '+' sign is considered as a string and is replaced by '%2B'.
I'm using my application in a Portal and hence the Portal URL is pretty long.
Ex: The following is rendered :
<script type="text/javascript" src="/portlet_xyz/PortletAdapterTester?portletURL=http%3A%2F%2Flocalhost%3A9088%2Fxyz%2Ffckeditor%2FFCKeditor-2.x%2Feditor%2F%27+%2B+url+%2B+%27"></script>
' + url + ' is simply replaced by its HexaDecimal value and the URL is not appended.
Re: URL not appending properly in Portal
Re: URL not appending properly in Portal
Re: URL not appending properly in Portal