• Salesforce CRM

Saturday, 14 June 2014

Convert Currencey to Words: Convert Rupees to words in Apex. Visualforce Page: <apex:page controller="Currenceyconverter" docType="html-5.0"> <apex:form > <apex:pageBlock title="Convert Currencey to Words"> <apex:pageBlockButtons location="bottom">      <apex:commandButton action="{!getdata}" value="submit" reRender="outputtext"/> </apex:pageBlockButtons> <apex:pageBlockSection...

Tuesday, 21 January 2014

Quick Login to Salesforce:                            Now users can login to your Org with single Step.we don`t need to spend more time on login. Production/Dev URL: https://login.salesforce.com/?un=Username&pw=Password Sandbox URL: https://test.salesforce.com/?un=Username&pw=Passwo...

Wednesday, 9 October 2013

Confirm Dialog box in Visualforce Visualforce Page: <apex:page tabstyle="account">     <apex:form>         <apex:pageBlock>             <apex:pageBlockSection title="Confirm dialog Demo" collpsible="true">             <apex:outputText> please click on button to populate confirm dialog</apex:outputText>    ...

Friday, 23 August 2013

A ) You can now include up to 35 child-to-parent relationships in a SOQL query. The previous limit was 25.B ) 5000 character limit for comment posting earlier it was 1000C ) You can now submit up to 3,000 batches per rolling 24–hour period. The previous limit was 2,000 batches.D ) The code statement limit has been removed. To protect against infinite processes overusing shared CPU resources, the maximum CPU time for a transaction is 10,000milliseconds...

Wednesday, 17 July 2013

Icons available Salesforce.com please refer below link: http://free-121d5f44d20-121d603d1c5-121ee2b8103.force.com/force2b/salesforceicons Reference :http://www.force2b.net...

Friday, 12 July 2013

Display Visual force Reports  with different Colors alternate rows : url :  http://apl-developer-edition.ap1.force.com/LatestRecords page: <apex:page controller="Latest_record" action="{!displayRecords}">     <style>         table tr:nth-child(even) {        background: #C3FAF6;         }         table tr:nth-child(odd) {  ...

Friday, 26 April 2013

Most popular requirement is searching in page block table, here I have written a small piece of JavaScript code to search record in page block table i.e. client side fast search, we can also implement search algorithm in apex but that will be server site may take some time to search record it depends on the network connection/traffic. Here the is a small piece of JavaScript with visual force page, just create a new visual force page and...

    Links