我想为datagrid中的字段设置不同的border-right。我试过这个,但它只是对行而不是标题
styler: function (value, row, index){
return 'border-right:2px solid #000;header-border-right:2px solid #000;';
}
以前有人试过吗? 谢谢你的帮助
答案 0 :(得分:1)
我通过在datagrid上添加此代码找到了解决方案
onLoadSuccess: function (data) {
var panel = $(this).datagrid("getPanel");
var myheaderCol = panel.find("div.datagrid-header td[field='quantity']");
// here is to add the css style
myheaderCol.css("border-right","2px solid #000");
}
希望这可以帮助那些寻求这种解决方案的人。