如何在SharePoint WebPart中扩展一列?

时间:2016-11-11 16:35:33

标签: sharepoint-2013

我的SharePoint页面上有一个包含五列的WebPart。它不是一个列表项,我不想扩大整个webpart只是一列恰好是第一列。

有谁知道怎么做?我觉得这很简单,我很想念。

enter image description here

1 个答案:

答案 0 :(得分:0)

如果你可以在你的页面上添加一些javascript代码,那么你可以通过javascript使列更宽。 像这样:

var table = document.querySelector('.ms-listviewtable');
var head = table.firstChild.firstChild;
head.childNodes[1].style.width="500px";