jquery easyui根据需求二次开发记录

2020-12-13 05:27

阅读:229

标签:style   class   blog   c   code   java   

1、tree需要显示多个图标

     实际需求:设备树上节点需搁三个图片,分别标识运行状态、告警状态、设备类型

     解决方法:给tree的iconCls传入一个数组,分别是各状态下的class(css),然后要改动easyui关于tree节点组装部分的代码                            

soscw.com,搜素材
if(item.iconCls ){
    cc.push("");
};
soscw.com,搜素材

       这里增加对item.iconCls的判断稍作改动即可

2、treegrid各行记录定制是否需要checkbox

     实际需求:设备树上只能让某些类型的设备添加到主面板上

     解决方法:改动easyui关于treegrid的节点组装函数renderRow,if(col.checkbox){...}改为

if(col.checkbox && col.checkbox(row[_7ca],row)){...}

                   这样就可以类似formatter一样可以附加函数实现定制。

                   页面代码这样写:

th data-options="field:‘ck‘,checkbox:showCheck">th>  
soscw.com,搜素材
function showCheck(value,row){
            if(row.type == 1){
                return true;
            } else{
                return false;
            }         
}
soscw.com,搜素材

 

3、propertyGrid name/value的汉化:

在easyui/local/easyui-lang-zh_CN.js里增加

soscw.com,搜素材
if($.fn.propertygrid){  
    $.fn.propertygrid.defaults.columns[0][0].title = "属性名"; // 对应Name  
    $.fn.propertygrid.defaults.columns[0][1].title = "属性值"; // 对应Value  
}  
soscw.com,搜素材

 

                 

        

 

jquery easyui根据需求二次开发记录,搜素材,soscw.com

jquery easyui根据需求二次开发记录

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/charles-dxb/p/3737033.html


评论


亲,登录后才可以留言!