Salesforce made a great move by making the Web Components part of the eco system by introducing Lightning Web Component(LWC). But for some reason, they decided not to provide the ability to code it directly from their developer console. Currently the only way to do it is, is by using the VS Code. This is […]
It is always a best practice to ensure you comply with the coding standards when you write your apex classes or triggers and you probably already make sure you do that. But how do you make sure to your entire team is complying to the coding standard, how do you make sure your team, your […]
Built an app which will allow the users to connect zillow directly from Salesforce. Some of the features supported by the applications are: Fully Supported on lightning experience and Salesforce 1 Absolutely no cost for using the application Easily connect Salesforce and Zillow Supported on all Custom and Standard Objects Drag and Drop the component […]
I wanted to try out some charting on LWC and I thought what better framework than C3. In this post we will see a component which will display opportunities in various statues associated to an account. As a prerequisite you would need c3 and d3 (c3 has a dependency on d3.js) framework loaded in static […]
This is a quick post to understand how sorting is accomplished in lightning datatable (LWC). Lightning datatable provides an onsort attribute which will allow us to implement the sorting for the elements in the table. You could implement sorting locally or via making a server call. Local Sorting You would generally implement this type of […]
Built a small lightning component which can be implemented in any project which needs the autocomplete support. Check out the code here: https://github.com/jungleeforce/lookupcomponent
This issue pops up when we try to deploy the customMetadata from One Org to another . The process I followed was to retrieve the components from Dev using ANT and then deploy it to QA using ANT. Retrieval of the components worked without any issue, but the name with which the components were retrieved […]
Attaching multiple files as attachments to records is a pain. Its takes lot of time plus lot of navigation. Today, I want to share a small piece of code that I have written as home page component which will inject a small section in the ‘Notes and Attachments’ related list which will allow the users […]
Everyday you see people (or yourself) doing some mundane task and you wonder how can you help them automate that process. So this article highlights something I did a few months back to help a friend who used to spend considerable amount of time fetching data from ALM (Earlier know as QC) formatting it and putting in […]
Showing a VF page as a popup on click of a custom button is fairly easy. But the problem arises when we have to refresh the parent when the user has completed the operation on the VF pop-up page because of the same-origin policy. The browser doesn’t allow any communication across domain/ protocol. But as […]
Reblogged this on Sutoprise Avenue, A SutoCom Source.
Hi,
Is their a way we can access the standard salesforce javascript functions in this script?
for example we have a standard function doAlertTimeout which will show session expire popup. Can we call this method in our script? I Tried including it, but it didn’t seem to be working. Any thoughts?
Thanks,
NHK