Lets write a Lightning Web Component(LWC) that gives us a search bar with auto complete suggestions of Places around us using Google Maps / Place API Integration with Salesforce. Actually, We are definitely not going see anything new today..! There are plenty of excellent articles already in google about google Maps integration with salesforce. We …
Read MoreTag: lwc
Part-6 CRUD operations on lwc
Today, lets learn.. how to create, update, retrieve and delete a lightning web component(lwc) from an sfdx project using command line interface (CLI). So, lets start from scratch.. Go to a fresh / New folder in your desktop.. and execute the below command. It creates an empty sfdx project container with name dreamhouse, now point …
Read MorePart-5 Modern JavaScript in lwc
ECMAScript 2016 has introduced a new keyword ‘class’ in client side controller..in an attempt to make JavaScript at least appear to work like a class-based language.. Visualforce is a tag based markup language and with a controller. Whenever we click a button, usually some kind of method will be executed in apex and return the …
Read MorePart-4 REST API callout from lwc
Let us try to know about how to get the data from any other 3rd party source (lets say SAP module) to lightning web component (lwc), by making a REST API callout from Salesforce, and display it in a lightning web component (lwc).. In other words lets integrate Salesforce with any other system, where salesforce …
Read More