SOLVED

Specify view for XsltListViewWebPart using PnP Provisioning Engine

Copper Contributor

I wonder if it is possible to specify what list view should be used when adding an XsltLitViewWebPart to a page with the PnP Provisioning Engine?

4 Replies
best response confirmed by Johannes Ekstrand (Copper Contributor)

Hi,

It's directly supported in PnP via https://github.com/SharePoint/PnP-Sites-Core/issues/584

 

In your webpart xml add one of the following params:

 

  • ViewId (guid of view)
  • ViewGuid (guid of view)
  • ViewName (display name of view)
  • ViewUrl (server relative url of view) 

In my case I have a list view named "Recently modified documents", and added this to the webpart properties xml in my provisining template.

 

<property name="ViewName" type="string">Recently modified documents</property>

 

PnP then fixes the hidden view automatically for you.

Awesome! That really worked, thanks for putting light on this. Wasn't able to see that when going through the PnP source code! Have now replaced my custom extention handler with this!

Awesome, and feel free to change my answer to "best response" ;)

1 best response

Accepted Solutions
best response confirmed by Johannes Ekstrand (Copper Contributor)