Blogs
-
Incorporate A Lightning Component within A Visualforce Page
A compelling rationale for embedding a Lightning Component within a Visualforce page lies in leveraging code reusability, especially for complex and frequently used functionalities. In my case, I’ve implemented a Lookup Component that serves across multiple Visualforce pages in the system. Presently, there isn’t a widely accepted method for seamless communication between a Lightning component…
-
A Fast Easy Neat ID Generator
Certainly, Salesforce offers its built-in auto-number system, and you could simply utilize a Salesforce ID—ensuring its uniqueness. Yet, there might be instances where you require a number with a distinct format, a specific arrangement like XX-XXX-XXXX, steering clear of potentially awkward letter combinations that could cause unintended implications. Nobody wants an ID resembling something like…
-
AngularJS Integration with Salesforce Lightning Design System Part 1
Let’s begin by giving a concise overview of AngularJS and delving into the necessary code to construct our initial Visualforce page based on AngularJS and Salesforce Lightning Design System. AngularJS serves as an MV* framework that excels in Single Page Applications (SPAs). It revolutionizes frontend application development by bridging JavaScript and HTML. Rather than directly…