You need to sign in to do that
Don't have an account?

lightning application is not working in Community
Hi team,
I have shown the record information through RecordId, Passing to the lightning application. It is working in salesforce internally and shown the information. I have dragged that lightning application into Community it does not work for me.
I thought about the base url issue. how to resolve this scenario.
Thank you.
I have shown the record information through RecordId, Passing to the lightning application. It is working in salesforce internally and shown the information. I have dragged that lightning application into Community it does not work for me.
I thought about the base url issue. how to resolve this scenario.
Thank you.
What is the error in the case of the lightning app on the community?Does the guest user have access to the object's record used in the Lightning app?Thanks
Thank you for responding to the question.
error : invalidPage.
It is a LWC compoenent. accessing that LWC through Lightning app. when i place the app in to community and click on Print record info button, it is not showing the information.
template:
<lightning-button label="Print record info" onclick={navigateToWebPage}></lightning-button>
js:
navigateToWebPage() {
this[NavigationMixin.Navigate]({
"type": "standard__webPage",
"attributes": {
"url": '/c/testapp.app?recordId='+this.recordID+''
}
});
}
Yes the user has permission on that object.
"url" : '/c/testapp.app?recordId='+this.recordId