The forum operates in read-only mode. Please head to StackOverflow for support.
<img width="360" height="40" alt="" src="/gfx/image/logo.jpg" />
<img width="360" height="40" alt="" src="http://mydomain.net/gfx/image/logo.jpg" />
GetE('txtUrl').value = url ;
GetE('txtUrl').value = FCKConfig.BaseHref+url ;
FCKConfig.UseSlashEndTag = true;
E=E.replace(FCKRegexLib.SpaceNoClose,' />');
if(FCKConfig.UseSlashEndTag == true){E=E.replace(FCKRegexLib.SpaceNoClose,' />');}else{E=E.replace(FCKRegexLib.SpaceNoClose,'>');}
var sLink = '<a href="#" onclick="OpenFile(\'' + fileUrl.replace( /'/g, '\\\'') + '\');return false;">' ;
var sLink = '<a href="#" onclick="OpenFile(\'' + fileUrl.replace( /'/g, '\\\'') + '\',\''+fileName+'\');return false;">' ;
Re: some questions about basehref and two other config(?) option
Re: some questions about basehref and two other config(?) option
Your tips actually made me look in the source code once again and I finally have what I was looking for.
Regards,
Jakub
If anyone's interested here are the solutions :
1. replace
GetE('txtUrl').value = url ;with
GetE('txtUrl').value = FCKConfig.BaseHref+url ;in function SetUrl( url, width, height, alt ) @ fckeditor\editor\dialog\fck_image\fck_image.js
2. add
@ fckeditor\fckconfig.js
and replace
with
if(FCKConfig.UseSlashEndTag == true){E=E.replace(FCKRegexLib.SpaceNoClose,' />');}else{E=E.replace(FCKRegexLib.SpaceNoClose,'>');}@ fckeditor\editor\js\fckeditorcode_gecko.js and fckeditor\editor\js\fckeditorcode_ie.js
3. replace
with
in oListManager.GetFileRowHtml = function( fileName, fileUrl, fileSize ) @ fckeditor\editor\filemanager\browser\default\frmresourceslist.html