How can I make a sharepoint list full width using a web part in Modern Sharepoint

Christopher Jack 101 Reputation points
2022-08-12T10:19:59.697+00:00

How can I make a sharepoint list full width using a web part in Modern Sharepoint?

It needs to be a webpart as I need to hide the toolbar at the top.

Thanks for help.

Microsoft 365 and Office SharePoint Development
Microsoft 365 and Office SharePoint For business Windows
0 comments No comments
{count} votes

Accepted answer
  1. Tong Zhang_MSFT 9,251 Reputation points
    2022-08-16T06:51:03.703+00:00

    Hi @Christopher Jack ,

    According to my research and testing, you can enable support for the full-width column, please set the supportsFullBleed property to true in the ** *.manifest.json ** file next to the web part ** *.ts ** file:

    {  
      //...  
      
      "requiresCustomScript": false,  
      "supportsFullBleed": true,  
      
      "preconfiguredEntries": [{  
        //...  
      }]  
    }  
    

    More information for reference: Use web parts with the full-width column


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.