Meet the “New Salesforce”

Big announcement coming from Salesforce just before Dreamforce this year (2015). Salesforce says it will be a whole "New Salesforce"! We're excited to share with you that our upcoming release will be our biggest, best, most game changing ever. And you are invited to an exclusive, early preview. Be the first in the world to get …

Regular Expression for Words with spaces

Problem: I want to check for the following strings using regExpression: 1) Main-xxxxx-Accepted 2) Main-xxx xxx-Accepted I used the below String regEx = 'Main-[aA-zZ-]*-Accepted'; Pattern.matches(regEx,'Main-SUBMITTED-Accepted')); results in **TRUE** It works fine for Main-SUBMITTED-Accepted. But it fails for a word with spaces (non submitted) Pattern.matches(regEx,'Main-NOT SUBMITTED-Accepted')); results in **FALSE** I tried the below ones. Nothing works String …

Bootstrap Modal Pop-Up Window – Background Static

I have bootstrap modal pop-up window. I want the background to be non-clickable. I have close button to close the modal pop-up, so the users should use only that. Clicking outside the modal pop-up window also closes the pop-up. Problem: I'm trying to restrict it by using html-data-backdrop="static" in the CommandLink but still not working. …