문제

Is there a way to change the size of a displayed list to full screen?

Currently my list has several columns that get cut off when viewing the list. SharePoint inserts a horizontal scroll but I would like to expand the default width.

Is this possible?

Update --

This is the only web part on the page.

Through more google foo I found that the issue is that TEAMS sites do not allow for "Full Width Column", is there a programmatic way to accomplish this?

도움이 되었습니까?

해결책

You can apply custom code with Content Editor web part on the list page to trigger the "Focus on Content" mode when loading the list.

Please note that Content Editor web part is only available in classic experience.

enter image description here

Please see the sample script below.

<script type="text/javascript">
window.onload = function()
{
  SetFullScreenMode(true);
}
</script>

Resource: Sharepoint 2013 - Fullscreen mode/hide quick launch.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top