Good day,
i found a bug: try use a editor on this path:
C:\Documents and Settings\Martin.Knotek\My Documents\Visual Studio Projects\Presentation\bin\Debug\editor
the images couldn by dispayed ...
thx for help
M.K.
i found a bug: try use a editor on this path:
C:\Documents and Settings\Martin.Knotek\My Documents\Visual Studio Projects\Presentation\bin\Debug\editor
the images couldn by dispayed ...
thx for help
M.K.
RE: a bug path
for windows based alpications is important change this file: fck_startup.js :
var FCKConfig=FCK.Config=new Object();
if (document.location.protocol=='file:')
{
FCKConfig.BasePath=document.location.pathname.substr(1);
FCKConfig.BasePath=FCKConfig.BasePath.replace(/\\/gi,'/');
FCKConfig.BasePath='file://'+FCKConfig.BasePath.substring(0,FCKConfig.BasePath.lastIndexOf('/')+1);
FCKConfig.BasePath = FCKConfig.BasePath.replace(/%20/g,' ');
}
else
{
FCKConfig.BasePath=document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/')+1);
FCKConfig.BasePath = FCKConfig.BasePath.replace(/%20/g,' ');
FCKConfig.FullBasePath=document.location.protocol+'//'+document.location.host+FCKConfig.BasePath;
};
then run html perfect, it is in whitespace automatic replace: %20
M.K.