You need to sign in to do that
Don't have an account?
Tulasiram Chippala
how to popup values in Lightning web components
There is a button on a page, then click on it it will open a standard contact page for creating a new contact. I am using below code in javascript
How we can pass some field values into that page. Values like accountId, phone, email etc. Can anyone help me with this? Thank you!
navigateToNewRecordPage() { // Opens the new Account record modal // to create an Account. this[NavigationMixin.Navigate]({ type: 'standard__objectPage', attributes: { objectApiName: 'Account', actionName: 'new' } });
How we can pass some field values into that page. Values like accountId, phone, email etc. Can anyone help me with this? Thank you!