Book Image

Salesforce CRM - The Definitive Admin Handbook

By : Paul Goodey GP, Paul Goodey
Book Image

Salesforce CRM - The Definitive Admin Handbook

By: Paul Goodey GP, Paul Goodey

Overview of this book

Table of Contents (18 chapters)
Salesforce CRM – The Definitive Admin Handbook Third Edition
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Introduction to Visualforce


Visualforce is the framework in Salesforce CRM that allows you to further customize your organization's user interface beyond the standard functionality that we have previously covered.

As described previously, using Visualforce, you can combine data from multiple objects, create mash-ups with data from external web services, and even override some of the logic and the behavior found within standard Salesforce CRM application functions. Visualforce consists of the following three elements:

  • Visualforce pages: These are used to define the user interface

  • Visualforce components: These can be thought of as a library of standard or custom-built sections of Visualforce code

  • Visualforce page controllers: These are used to control the behavior of Visualforce pages, and can either be controlled by standard logic, or you can create custom logic to change or extend the standard Salesforce CRM behavior

Visualforce pages

The Visualforce framework allows for the creation of Visualforce...