简体   繁体   中英

Is is possible to render a Webpart within another Webpart

I want to display a webpart within another webpart in Sharepoint Framework.

I am using Sharepoint Framework and have created two webparts. One of them fetches information about a user, the other one displays a GroupedList(office-ui fabric react). So far I looked for answers in the microsoft documentation but I wasn't able to integrate the UserData into the GroupedList

Brian,

It's not possible to add a webpart into another webpart.

Do the webparts share a package ie are they in the same solution? If so, I suggest creating 2 components for example:

  • UserInformation (which retrieves the user information)
  • ListView (which displays the groupedList)

The rendering of webpart 1 will return

<UserInformation />

The rendering of webpart 2 will return

<ListView />

When you want to combine the 2 into a single, third, webpart which renders for example:

<div>
   <h1>User Information</h1>
   <UserInformation />
   <h1>List</h1>
   <ListView />
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM