|
楼主 |
发表于 2016-12-16 15:23:48
|
显示全部楼层
半导体 发表于 2016-12-16 14:20
Model.prototype.button1Click = function(event) {
var parentNode = this.getElementByXid("content1 ...
for (var i = 0; i < sel.length; i++) {
//this.comp('dataTables1').showCol(sel);
selected1.push({sName:sel,xid:"column"+(i),width:'200px'});
}
var option = {
parentNode : parentNode,
xid: "dataTables1",
data : "projectassignData",
onCellRender:"dataTables1CellRender",
class:"table table-hover table-striped " ,
multiSelect: true,//多选框 属性,没有效果
responsive : false,
flexibleWidth : false,
showRowNumber: true,
autoWidth:false,
ordering : true,
// 列定义
columns : selected1
};
var newTable = new dataTables(option);
newTable.setCSS({"margin": "0px"});//设置CSS样
我也是 这样 写的,可是 宽度不出来效果 |
|