easyUI树样式调整 从三角箭头改为加号减号 easyui应该自带的就有加号减号的树样式 应该怎么设置显示

easyUI树样式调整 从三角箭头改为加号减号 easyui应该自带的就有加号减号的树样式 应该怎么设置显示,第1张

加入easyui的icon.css样式,并且在数据节点添加iconCls属性就可以了。举个例子:

<link rel="stylesheet" type="text/css" href="../../themes/icon.css">

[{"id":16,

"text":"Actions",

"children":[{

"text":"Add",

"iconCls":"icon-add"}]

}]

就会有图标效果了。

datagrid没有设置表头颜色的方法,你可以查看页面加载后,表头的结构,然后写css代码。

在页面上写如下css样式即可:

.datagrid-header-row .datagrid-cell{

background-color:#999

}

var width = $(window).width()-80

var height = $(window).height()-120

stView_layout = $('#stView_layout').layout({

width: width,

height: height

})

station_view = $('#stationView').window({

title: '测站导航',

left:50,

top:80,

width: width,

modal: false,

shadow: false,

closed: true,

height: height,

onResize:function(w,h){

if(stView_treegrid){

stView_treegrid.treegrid({

width:w-20,

height:h-260

})

}

}

})


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11670603.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存