Hi. I am trying to play around with Power Apps in hopes of integrating it with my sharepoint list. I was able to create a front page and a basic form (well, Power Apps did most of the work). The issue I'm having is I can't see the form in preview. I can only see the header. I have read this is a common issue and I need to locate the item and see the default. My issue is that I don't think I have an item object. I am very confused, please assist!
Hi @dyee4613,
Could you please share a screenshot of the issue within your app?
Do you custom a form for your SP list using PowerApps?
Further, is there no item added into your SP list (a Blank list)?
I suppose that there is no item added into your SP list (it is a Blank list), is it true?
I have reproduced your issue on my side, if there is no item added into your SP list, when you see the form in preview, the form would show "No item to display" message as below:
Please note that the Item property of the SharePointForm1 is set to following formula:
If(
IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),
First('20180720_case14'),
SharePointIntegration.Selected
)
According to above formula, we can know that, if you select an item from the SP list, the form (SharePointForm1) would show the item that you selected, if you don't select an item from the SP list, the form (SharePointForm1) would display the first item of the SP list in default (If the first item doesn't exist, the form would display none).
So if there is no item added into your SP list, the SharePointForm1 would display none (As I mentioned above, "No item to display")
If you don't want the SharePointForm1 to show "No item to display", please consider take a try to add an item into your SP list.
More details about understanding Sharepoint forms integration, please check the following article:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/sharepoint-form-integration
Best regards,
Kris
Power Apps User Groups are coming! Make sure you’re among the first to know when user groups go live for public preview.
Did you miss the call?? Check out the Power Apps Community Call here!
User | Count |
---|---|
254 | |
206 | |
76 | |
37 | |
33 |
User | Count |
---|---|
330 | |
215 | |
124 | |
71 | |
54 |