Password Length must be greater than 8 character
15 |Password should contain 2 special characters
16 |Password should contain 2 Numbers
17 |Password should contain 1 Upper case character
18 |Password should contain 1 Lower case character
19 |{animalObjectData.name}
14 | Habitat:{animalObjectData.habitat}
15 | Animal Type:{animalObjectData.animal_type}
16 | Active Time:{animalObjectData.active_time}
17 | Lifespan:{animalObjectData.lifespan}
18 | geo Range:{animalObjectData.geo_range}
19 | Diet:{animalObjectData.diet}
20 | Latin Name:{animalObjectData.latin_name}
21 | 22 |{birdObject.name}
20 | 21 | 24 | 25 |{accountObject.Name}
20 | 21 |{contact.Id} 22 | NAME={contact.Name} 23 |
24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/displayRecordType/displayRecordType.js: -------------------------------------------------------------------------------- 1 | import { LightningElement, track, wire } from 'lwc'; 2 | 3 | import getRecordTypeObjectAccount from '@salesforce/apex/GetRecordTypeHelper.getRecordTypeObjectAccount' 4 | import getContactWithName from '@salesforce/apex/GetRecordTypeHelper.getContactWithName' 5 | import getAccountDetails from '@salesforce/apex/GetRecordTypeHelper.getAccountDetails' 6 | 7 | 8 | export default class DisplayRecordType extends LightningElement { 9 | 10 | 11 | @track 12 | recordTypeDatass 13 | 14 | @track 15 | accountDetails 16 | 17 | contactData; 18 | 19 | searchParam=""; 20 | 21 | @wire(getRecordTypeObjectAccount) 22 | recordTypeData 23 | 24 | @wire(getContactWithName, { sssname: '$searchParam' }) 25 | wiredData({ error, data }) { 26 | if (data) { 27 | console.log('Data', data); 28 | this.contactData = data; 29 | //alert('Data'); 30 | } else if (error) { 31 | console.error('Error:', error); 32 | alert('Error'); 33 | } 34 | } 35 | 36 | @wire(getAccountDetails, { searchString: '$searchParam' }) 37 | wiredData({ error, data }) { 38 | if (data) { 39 | //console.log('Data', data); 40 | this.accountDetails = data; 41 | 42 | this.accountDetails.forEach(element => { 43 | console.log("Contact "+element.Contacts); 44 | }); 45 | 46 | 47 | // alert('getAccountDetails') 48 | } else if (error) { 49 | console.error('Error:', error); 50 | } 51 | } 52 | 53 | 54 | 55 | handlechange(event) { 56 | 57 | //alert('VALUE' + event.target.value) 58 | 59 | this.searchParam = event.target.value; 60 | 61 | } 62 | 63 | 64 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/displayRecordType/displayRecordType.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 |Hi Internet
4 |
9 |
10 | Selected Value is:{selectedValue}
27 |
{dataObj.named}
32 | {dataObj.numbers} 33 | fieldValues : {dataObj.fieldValues} 34 | 35 | 36 | 37 | 38 |Password Length must be greater than 8 character
15 |Password should contain 2 special characters
16 |Password should contain 2 Numbers
17 |Password should contain 1 Upper case character
18 |Password should contain 1 Lower case character
19 |error
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |Submit OTP within {timer} seconds
31 | 32 | 33 | 34 |