Pergunta

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?

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top