有关easyui-layout中的收缩层无法显示标题的解决办法

PHPz
Release: 2018-09-28 11:21:09
Original
1950 people have browsed it

本文给大家介绍有关easyui-layout中的收缩层无法显示标题的原因分析及解决办法,感兴趣的朋友可以参考下

easyui-layout中的收缩层无法显示标题的问题原因分析:

在easyui-layout中设置面板初始化为可以折叠,然后就发现标题还有图标都木有了

1.png

嗯,就是结果列表上面、一片空白,出现了问题就要去解决它,在网上查了资料之后呢,决定修改jquery.easyui.min.js

版本为:jQuery EasyUI 1.4.1

在5105行有_39d方法,在其中设置两个变量_Cstitle,_CsIcon添加代码如下:

var _Cstitle; var _closedTitle = p.panel("options").title; if(_closedTitle){ _Cstitle = _closedTitle; } else{ _Cstitle = ''; }
Copy after login

这样我们就获得了一个标题变量,图标用相同方法即可获得。

接下来只要在接下来的一个方法中(行数5162)将面板的title属性,iconCls属性设置为上面定义的变量就OK了~\(≧▽≦)/~

p.panel($.extend({}, $.fn.layout.paneldefaults, {   cls: ("layout-expand layout-expand-" + dir), title: _Cstitle, iconCls: _CsIcon, closed: true, minWidth: 0, minHeight: 0, doSize: false, tools: [{   iconCls: icon, handler: function () {   _3ad(_39e, _39f);   return false; }   }] }));
Copy after login

就是这样咯~~

2.png

以上内容是小编给大家介绍的easyui-layout中的收缩层无法显示标题的解决办法,希望对大家有所帮助!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!