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

easyUI----grid

时间:2017-01-22 18:03:42      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:mic   style   fit   box   gre   field   dex   ndis   color   

1.设置标题行高

.datagrid-header-row td{background-color:rgb(15,185,234);color:#fff;height:35px ;font-size:14pt;font-family:"Microsoft Yahei",Verdana,Simsun,"Segoe UI Web Light","Segoe UI Light","Segoe UI Web Regular","Segoe UI","Segoe UI Symbol","Helvetica Neue",Arial }

2.设置内容行高
.datagrid-row { height: 32px; }

3.同步行和checkBox点击事件

function initGrid(taskTypeId){
$("#bt_buttion1").attr("class","tlbtn2 btndisabled");
$("#bt_buttion2").attr("class","tlbtn2 btndisabled");
$(‘#assctlgDiv‘).empty();
$(‘#assctlgDiv‘).datagrid({
url:"/../gridData.do?taskTypeId="+taskTypeId,
fitColumns : true,
fit : true,
checkbox : true,
rownumbers:true,
columns :[[
{
field : ‘‘,
title : ‘单选‘,
align : ‘center‘,
checkbox : true
},
 {
field : ‘bgtstage‘,
title : ‘AAA‘,
halign:‘center‘,
align : ‘left‘,
width : ‘24%‘,
formatter:function(value , record , index){
if(value == 0){
return ‘<span style=color:red; >A</span>‘ ;
} else if( value == 1){
return ‘<span style=color:green; >B</span>‘ ;
} else if( value == 2){
return ‘<span style=color:blue; >C</span>‘ ;
}
}
}, {
field : ‘confirmtime‘,
title : ‘BBBB‘,
halign:‘center‘,
align : ‘left‘,
width : ‘24%‘,
formatter:function(value , record , index){
if(value == ""){
return ‘<span>AAA</span>‘ ;
}else{
return value;
}
}
}]],
onSelect: function () //选中一行
{
toolblock();
},
onUnselect:function ()
{
toolblock();
},
onSelectAll:function ()
{
toolblock();
},
onUnselectAll:function ()
{
$("#bt_buttion1").attr("class","tlbtn2 btndisabled");
$("#bt_buttion2").attr("class","tlbtn2 btndisabled");
}
});
};
function toolblock(){
var rows = $(‘#assctlgDiv‘).datagrid(‘getSelections‘);
var count = 0 ;
var count1 = 0 ;
$.each(rows, function (index, row) {
if(row.bgtstage=="0"){
count=count+1;
};
if(row.bgtstage=="1"){
count1=count1+1;
};
});
if(rows.length==count&&count>0){
$("#bt_buttion1").attr("class","tlbtn2");
}else if(rows.length==count1&&count1>0){
$("#bt_buttion2").attr("class","tlbtn2");
}else{
$("#bt_buttion1").attr("class","tlbtn2 btndisabled");
$("#bt_buttion2").attr("class","tlbtn2 btndisabled");
}
}

easyUI----grid

标签:mic   style   fit   box   gre   field   dex   ndis   color   

原文地址:http://www.cnblogs.com/sx2zx/p/6340961.html

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