Mytutorialrack

Blogs

Home - Archives for 2016 - Archives for November

Salesforce

Salesforce Lightning Inspector: New developer tool for google chrome

Install it here Debugging your web apps is one of the most difficult task for any web developer. One of the main reason behind the popularity of google chrome browser among web developer is its great set of Developer tools. Even with great set of tools available, developers still face challenges with apps that depend

Read More »
Salesforce

Integrating External application / External data into Salesforce using Heroku External objects and Heroku Postgres addon

Lot of times, customer facing websites depend on a relational database as there primary datastore. These applications which depend on Salesforce for back-office uses, it is important to bridge these two systems to give a great experience to customers. For example, we have an external application which contain customer-related data like coupon code which is edited

Read More »

Apex -triggers in Salesforce with example

Apex trigger is a piece of code which executes when an event ocurrs. It executes when a record is Inserted,Deleted or updated from the force.com database. Syntax: These are the events on which trigger get fires: Insert Update Delete Merge upsert undelete Let’s take an example: Suppose we have a requirement in which we need

Read More »
Technology

How to pass parameters to Apex Method from Visuaforce page?

Lot of times I get this question from developers, is “How to pass parameter to a controller method” So in this blog post I will walk you through step by step how to do that. In this tutorial, we will create a visualforce page which will display the account and the list of contact associated

Read More »