visualforcemadeeasy.blogspot.com
Visual Force Made Easy: August 2010
http://visualforcemadeeasy.blogspot.com/2010_08_01_archive.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Friday, August 6, 2010. Opportunity Wizard Controller - TestMethod. So, I was looking all over for the opportunity wizard controller test method. There is none, not even salesforce wrote a test wizard for it. They wrote the controller wizard. Which can be found here:. I decided to write a test class for it:. Place this within the controller before it ends. Private static testmethod void testnewOpportunityController(){.
visualforcemadeeasy.blogspot.com
Visual Force Made Easy: April 2010
http://visualforcemadeeasy.blogspot.com/2010_04_01_archive.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Friday, April 30, 2010. How to use rowClasses in a dataTable or PageBlockTable in VisualForce. To have a table that would shade each alternative row. In your css file or even in the visualforce page place in the following:. Inside the VF Page:. So the Apex Visualforce page would look like this:. QueryResult}" var="r" id=" ttable" border="0" rowClasses="even,odd". Now you have each other row shaded gray/white. Kind of l...
visualforcemadeeasy.blogspot.com
Visual Force Made Easy: February 2009
http://visualforcemadeeasy.blogspot.com/2009_02_01_archive.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Wednesday, February 25, 2009. Users can not see VisualForce Page? I ran into a scenario where there was a VisualForce page created with a controller and added onto the Page Layout. Now I as an admin I can view the VF page on the page layout I placed in on. But when I logged into as an User I could not view the page. The Answer to this. Page level security access on their profile to this VFpage. Links to this post.
visualforcemadeeasy.blogspot.com
Visual Force Made Easy: Opportunity Wizard Controller - TestMethod
http://visualforcemadeeasy.blogspot.com/2010/08/opportunity-wizard-controller.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Friday, August 6, 2010. Opportunity Wizard Controller - TestMethod. So, I was looking all over for the opportunity wizard controller test method. There is none, not even salesforce wrote a test wizard for it. They wrote the controller wizard. Which can be found here:. I decided to write a test class for it:. Place this within the controller before it ends. Private static testmethod void testnewOpportunityController(){.
visualforcemadeeasy.blogspot.com
Visual Force Made Easy: IF THEN STATEMENT IN VF plus Format of Dates in Force.com
http://visualforcemadeeasy.blogspot.com/2010/01/if-then-statement-in-vf-plus-format-of.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Wednesday, January 27, 2010. IF THEN STATEMENT IN VF plus Format of Dates in Force.com. I had to do an IF THEN STATEMENT off from a date to place a date range into a VF Page. Issue I had was the date Formating, because when you place a formula to do a Date it comes out as YYYY-MM-DD. So this is what I did:. I created a table that has columns and the resulted row:. So two tags here being used are :. IF THEN STATEMENT IN...
visualforcemadeeasy.blogspot.com
Visual Force Made Easy: March 2009
http://visualforcemadeeasy.blogspot.com/2009_03_01_archive.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Friday, March 20, 2009. Embed VisualForce Page on Home Page. Create a Google Graph via VF and then embed it to the. Home Page. So when an user logs in they see the graph of there sales information Year over year. For this blog, I will walk through the steps of placing in any. Component onto the Home Page. Go to Setup Customize Home Home Page Components. Choose HTML Area and. Input the Name for your component. Through a...
visualforcemadeeasy.blogspot.com
Visual Force Made Easy: How to use rowClasses in a dataTable or PageBlockTable in VisualForce
http://visualforcemadeeasy.blogspot.com/2010/04/how-to-use-rowclasses-in-datatable-or.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Friday, April 30, 2010. How to use rowClasses in a dataTable or PageBlockTable in VisualForce. To have a table that would shade each alternative row. In your css file or even in the visualforce page place in the following:. Inside the VF Page:. So the Apex Visualforce page would look like this:. QueryResult}" var="r" id=" ttable" border="0" rowClasses="even,odd". Now you have each other row shaded gray/white.
mysalesforcecode.blogspot.com
Salesforce Made Easy: Developer 401 Force.com Exam - Tips
http://mysalesforcecode.blogspot.com/2009/03/developer-401-forcecom-exam-tips.html
Salesforce.com / Force.com Tips and Tricks - Learn Apex, Page Layouts, SOQL, Certification, plus more! Authored by Zishan Razzaq. Friday, March 6, 2009. Developer 401 Force.com Exam - Tips. The developer 401 Force.com. Exam is geared toward people who do not know how to code as per say write a trigger or Visual Force Page. But does understand. What the technical functions. Are in salesforce.com. So when you are preparing for this test, please do not worry about the code itself but worry about:. A great b...
visualforcemadeeasy.blogspot.com
Visual Force Made Easy: How to use apex variable for total records in Visualforce
http://visualforcemadeeasy.blogspot.com/2010/04/how-to-use-apex-variable-for-total.html
Visual Force Made Easy. VisualForce on Force.com - Learn the ABC's here to go advance. Friday, April 30, 2010. How to use apex variable for total records in Visualforce. I came across a issue where visualforce does not allow one to Count or Sum records in a page. One solution would be to add more code to the controller to do a count of the records. Which is ok. A simple solution is to use the apex variable function in Visualforce. Lets do it off Contacts. Public List Contact queryResult {get;private set;}.