我尝试使用过滤器为角度数据表中的列设置宽度。 但是列的宽度没有改变。
我试着跟随
var columnsSpecification = [
{
type: 'text',
bRegex: true,
bSmart: true
}, {
type: 'text',
bRegex: true,
sWidth:"90px"}];
$scope.dtOptions = DTOptionsBuilder.newOptions()
.withBootstrap()
.withOption('scrollX', '700%')
.withOption('scrollY', height + 'px')
.withOption('oLanguage', { "sEmptyTable": " " })
.withOption('lengthMenu', [[-1, 1000, 100, 50, 25, 10], ['All', 1000, 100, 50, 25, 10]])
.withOption('paging', false)
.withOption('bInfo',false)
.withColumnFilter({
aoColumns:columnsSpecification
})
.withTableTools('/Content/DataTables/swf/copy_csv_xls.swf')
.withTableToolsButtons(['xls']);
在html文件中我尝试了这个:
<table id="table-machines" datatable="ng" class="table table-striped" dt-options="dtOptions">
<thead>
<tr>
<th>Name</th>
<th style="width: 90px !important">Value</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="m in records>
<td>{{m.name}}</td>
<td style="width: 90px !important">{{m.Value}}</td>
</tr>
</tbody>
但是Value列的另一个是我设定的。
我发现,如果没有过滤器 - 一切都很好。
如何设置表格宽度并保留过滤器?
答案 0 :(得分:9)
vm.dtColumns = [
DTColumnBuilder.newColumn('id').withTitle('ID').withOption('width', '5%')
];
答案 1 :(得分:0)
最后,我发现了避免数据表覆盖引导列宽度定义的解决方案:
$scope.dtOptions = DTOptionsBuilder.newOptions()
.withOption('autoWidth', false)
就像把这个名字设置为假一样容易......但它在API中看起来并不可用:(