Salesforce. AI. Web3
Video Demo : Angular + Visualforce + Node JS + Grunt (PART 2)
In part 1 of this series, we saw how to create a basic Angular JS SPA (Single Page App) using your favorite IDE like Mavens Mate, Welkin's Suite, or Aside.io.
As with SPA's most of the business logic a…
Success Story - 1 Month Salesforce Trailhead Journey of College Students
I was at the Trailheadathon event on this Saturday, 10th Sept'16 in Gurgaon. From meet-up standpoint it was good, but something else was very unique about it, i.e.
1. Salesforce sponsored 3 college stude...
Running our own website & business on Salesforce 1 Platform
We got a Salesforce enterprise license a few months back, primarily with the goal to move our business on the Salesforce platform. It was quite an exciting experience to get your own Salesforce Enterpri...
Seriously "Struck - By - Trailhead" !
You read it correctly, it not "struck by lighting", its "struck by trailhead", we love lightning a lot, but trailhead so far is such an amazing time saver to Concretio, that we can't resist saying that. W…
Preview - Salesforce Debug Log Chrome Extension
We all developers use Salesforce debug logs to figure out fishy things in code. I sort of struggle with the way logs are presented currently, as its bit tough to make sense of all information. This open...
Cancelling out of HTML5 browser validations !
This post is based on a short scary movie, I was working on a cool HTML-5 page
<apex:page .... docType="html-5.0"/>
But all the coolness disappeared when powers of CANCEL button are gone. The typical...
Salesforce MVP - Are you a good candidate ?
Since nominations for Winter'14 MVP are open, I got into discussions with many people regarding few repetitive points, like…
Take aways from Salesforce Noida Developer Meetup !
Noida meetup was great opportunity to connect with force.com peers. We had good presentations and knowledge exchange, here is the briefing of those presentations…
Generating Base-64 SHA-1 Signature Header for Rackspace API in Apex
This post shares small code snippet to generate base-64 SHA1 Hash, which is typically used in passing as signature header to some APIs. We tested this snippet with Rackspace API Signature Header, which…
Accessing Sobject Field Sets in Apex Code !
I recently came across a problem, where I need to query the fields to be shown via FieldSet via Apex Code (No Standard Controller Love). After struggling for a while with Apex docs, I googled for the same…
Tip: Using Decimal class with Strings in Apex
Today I came across an interesting problem that reminded me of my Java days. A piece of Apex code written by some other developer was broken, when I did my fixes.
Here is some background about the broken…
Force.com Developer Console Navigation Trick
I never thought that working in browser can be more fun than Eclipse IDE. But my thinking is changing these days, first http://jsfiddle.net/ became my favorite playground for any HTML/Javascript research…
Yet another Apex Trigger Template !
I know Trigger templates are previously discussed also in great detail. We have excellent posts available by Steve Andersen(Gokubi) and Mike Leach on the same. Here is my small journey on Triggers…
Force.com ESAPI v0.5 & death of Apex-CRUD-FLS-Validator API.
“Apex-CRUD-FLS-Validator” was an open source project I started few days back on github. Motive of this project was to add some handy apis that were missing previously in Force.com ESAPI v0.4. Those missing…
Visualforce Code Templates/Snippets for Force.com IDE !
I recently saw a lot of action around Mac’s favorite editor TextMate. Force.com community has done a great job to create a full fledged IDE and various code templates for ease in working…
JSON parsing in Apex, a developer’s nightmare :( Winter’12 release I badly need you !
Today I stumbled upon a requirement to parse JSON in Apex. I was happy about the fact that I know there is a cool open source library calledJSONObject, that will do all the heavy lifting of JSON parsing and another more cooler native JSON parser is lined up in coming winter'12 release…
Apex inheritance – Extending managed package abstract/virtual classes & interfaces !
n my recent project, I came across a requirement to create a base class in a managed package with child extension packages would extend to add their value to it…
Calling Marketo SOAP API from Salesforce APEX Classes !
We know about Marketo and its having a deep Salesforce integration. Recently I came across a new requirement to call Marketo SOAP API from Apex. You must be thinking this process is pretty straightforward…
How do you read cookies set by JavaScript in the Apex/Visualforce controller?
This might be a requirement, if you are developing some complex navigation…
Is Javascript Remoting == ViewStateLess Visualforce ?
Javascript remoting is one of my favourites from Spring’11 release and I’m constantly thinking of making best use of it in Visualforce. I believe remoting is the way to make Visualforce more "viewstate less", this post shows a POC of a complete functional example of a page that searches and updates accounts using Remoting only i.e no viewstate…