文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>FCKediotor修正手记

FCKediotor修正手记

时间:2007-03-04  来源:netyang

方便搜索,设置关键字
 fckeditor 缩略图 上传路径 .net 精简 简化

版本:
Resourse 2.4
.NET 2.2

先下载,具体地点以后补充,这是手记,别要求这么多

首先是修改,以后补上

修改上传路径
在Web.config中加入

<appSettings>
                <add key="FCKeditor:UserFilesPath" value="/HN/upload/"/>
</appSettings>


红色的字体是路径,为什么不用~,请自行查看相关文章,这里不详述.

缩略图,网上很多的都是一代而过,高手果然不同凡响,且不说了,自己动手,从网上找到的资料说要改

editor\filemanager\browser\default\frmresourceslist.html

中的GetFileRowHtml函数

耐住性子看了半天
修改成如下的代码

oListManager.GetFileRowHtml = function( fileName, fileUrl, fileSize )
{
    // Build the link to view the folder.

    var sLink = '<a href="#" onclick="OpenFile(\'' + fileUrl.replace( /'/g, '\\\'') + '\');return false;">' ;

    // Get the file icon.

    var sIcon = oIcons.GetIcon( fileName ) ;

    return '<tr>' +
            '<td width="16">' +
                sLink +
                '<img alt="" src="images/icons/' + sIcon + '.gif" width="16" height="16" border="0"></td><td align="center"><img alt="" src="' + fileUrl + '" onload="javascript:if(this.width/this.height>=1.5&&this.width>150)this.style.width=150;else if(this.width/this.height<=1.5&&this.height>100)this.style.height=100;" border="0"></a>' +
            '</td><td>&nbsp;' +
                sLink +
                fileName +
                '</a>' +
            '</td><td align="right" nowrap>&nbsp;' +
                fileSize +
                ' KB' +
        '</td></tr>' ;
}

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载