Blogs
-
Managing Lightning Events in A Visualforce Page
Today, I’m presenting a brief tutorial on incorporating Lightning Components into Visualforce pages and subsequently managing an event from your Lightning Component within your Visualforce page. This assumes you possess fundamental knowledge of Visualforce pages and the capability to create a basic Lightning Component. Before commencing, ensure you have established stylings for your Lightning Design…
-
Incorporating A Lightning Component Into Visualforce Pages
Begin by generating a pair of new Lightning components and a Lightning app to house them. I utilized a couple of Lightning components I had previously created during my learning process: helloWorld.cmp (refer to Figure 1) and helloPlayground.cmp (refer to Figure 2). Subsequently, I incorporated an app named ‘harnessApp.app’ to contain these components. helloWorld.cmp Component…
-
Arrange Your Testing Classes Using Test Suites.
At some point in their Salesforce development journey, most developers will encounter triggers that accumulate diverse responsibilities. As the trigger grows, maintaining all Apex tests within a single test class can become challenging. It may be necessary to distribute these tests across multiple classes. The question then arises: How can you ensure that all tests…