码迷,mamicode.com
首页 > 其他好文 > 详细

如何去掉jQWidgets中Tree Grid右下角的链接

时间:2017-04-02 13:47:57      阅读:465      评论:0      收藏:0      [点我收藏+]

标签:data   自己   方法   pre   qwidget   隐藏   targe   down   size   

转自: http://www.xdlysk.com/article/5785f7dbf46a268c098a5c55

项目中需要使用TreeGrid展示效果,于是找到了jQWidgets这套基于jQuery的UI套件。

在使用过程中发现每次渲染完TreeGrid后会在表格右下角出现一个www.jqwidgets.com的span标签,虽然在几秒钟后会消失,但是会挡到数据。于是想将这段代码删了。

在相关的脚本中搜索www.jqwidgets.com相关的关键字都没有对应结果。于是准备从其父容器下手,一般来说这种js生成的标签都会使用appendChild之类的方法将自己添加到父容器中。最后找到其父容器是在jqxdatatable.js这个文件中。我们来看看这段代码:

 

_rendercelltexts : function () {
            var d = String.fromCharCode(119, 119, 119, 46, 106, 113, 119, 105, 100, 103, 101, 116, 115, 46, 99, 111, 109);
            if (location.hostname.indexOf(d.substring(4)) == -1) {
                if (this._gridRenderElement) {
                    b(this._gridRenderElement).remove()
                }
                var e = String.fromCharCode(83, 80, 65, 78);
                var c = String.fromCharCode(72, 84, 84, 80, 58, 47, 47);
                var f = document.createElement(e);
                f.id = b.jqx.utilities.createId();
                f.innerHTML = d;
                f.style.position = "absolute";
                f.style.right = "5px";
                f.style.bottom = "5px";
                f.style.color = "#909090";
                f.style.cursor = "pointer";
                f.style.zIndex = "999999";
                f.style.display = "none";
                f.style.fontSize = "9px";
                f.onmousedown = function () {
                    open(c + d)
                };
                this.content[0].appendChild(f);
                this._gridRenderElement = f
            }
        }

它这里使用了String.fromCharCode方法将隐藏了数据明文,转以ASCII码替代。

接下来就好办了,这里我们把this.content[0].appendChild(f)注释就可以了。

如何去掉jQWidgets中Tree Grid右下角的链接

标签:data   自己   方法   pre   qwidget   隐藏   targe   down   size   

原文地址:http://www.cnblogs.com/pinganzi/p/6658840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!