force.com friday : intro to visualforce

40
Intro to Visualforce April 11, 2014

Upload: salesforce-developers

Post on 26-Jan-2015

112 views

Category:

Technology


0 download

DESCRIPTION

New to Force.com and needing a quick orientation to bring you up to speed? Join us for this series of brief introductory sessions on Force.com, the world’s leading cloud platform that lets you build apps rapidly using configuration-driven development and powerful programmatic logic. Each Friday one of our experts will walk you through one of the core elements of the Force.com platform and cover the basics you need to build your first app in the cloud. Each session is 30 minutes long.

TRANSCRIPT

Page 1: Force.com Friday : Intro to Visualforce

Intro to Visualforce April 11, 2014

Page 2: Force.com Friday : Intro to Visualforce

Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995:

This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.

The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of intellectual property and other litigation, risks associated with possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-Q for the most recent fiscal quarter ended July 31, 2012. This documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.

Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: Force.com Friday : Intro to Visualforce

Post picture here

Name Title Twitter handle

Speaker

Page 4: Force.com Friday : Intro to Visualforce

Post picture here

Follow Developer Force for the Latest News

@forcedotcom / #forcefriday

Developer Force – Force.com Community

Developer Force

Developer Force Group

Page 5: Force.com Friday : Intro to Visualforce

What can you do with Visualforce?

!  Framework to build custom user interfaces

!  Hosted natively on Force.com

!  Build streamlined UX

!  Create internal and public facing pages

!  Customize for different devices

!  Leverage other web technologies

Page 6: Force.com Friday : Intro to Visualforce
Page 7: Force.com Friday : Intro to Visualforce

Controller (MVC) Pattern

Model Controller

View

Page 8: Force.com Friday : Intro to Visualforce

Model View Controller (MVC) Pattern

Your Data Your Logic

Your Interface

Page 9: Force.com Friday : Intro to Visualforce

Model View Controller (MVC) Pattern

Standard and Custom Object

Visualforce

Standard Controllers and Apex

Page 10: Force.com Friday : Intro to Visualforce

MVC example

Page 11: Force.com Friday : Intro to Visualforce

MVC example

!  Visualforce tags

–  100+ standard components

–  Custom components

!  Works with all standard web technologies including:

–  CSS

–  JavaScript

–  HTML

–  Flash

–  Any other Web-Enabled Code

Page 12: Force.com Friday : Intro to Visualforce

What do standard components look like?

apex: or chatter: prefix

Attributes to define component

Merge field to define attribute (can also be a

string literal in some cases)

<apex:outputField value = �{!Restaurant__c.Address__c}� >

Reference field (using dot notation)

Data binding to objects and class variables

Component name (examples: tables, repeats, forms, etc)

Page 13: Force.com Friday : Intro to Visualforce

!  Provides access to data

!  Logic for handling UI interaction

!  Standard Controllers

–  Same functionality as standard pages

•  Save, delete, field access etc.

!  Custom Controllers

–  Written in Apex

–  Override standard behavior

–  Controller Extensions

Visualforce Controllers

Page 14: Force.com Friday : Intro to Visualforce

What do standard components look like?

Standard or custom objects

Defined at the page

level

Custom controller logic to extend

standard controllers

Inherit standard CRUD functionality.

If only using custom controllers, use controller=“controllerName”

<apex:page standardConroller =�Restaurant__c� extensions

> “ext1, ext2� =

Page 15: Force.com Friday : Intro to Visualforce

How can I customize Visualforce?

Page 16: Force.com Friday : Intro to Visualforce

The Developer Console

Page 17: Force.com Friday : Intro to Visualforce

Name Title @Twitter

What else can you do with Visualforce?

Page 18: Force.com Friday : Intro to Visualforce

Rich user interfaces

Page 19: Force.com Friday : Intro to Visualforce

Complete web apps

Page 20: Force.com Friday : Intro to Visualforce

Mashups

Page 21: Force.com Friday : Intro to Visualforce

Complete web apps

Page 22: Force.com Friday : Intro to Visualforce

But…

!  Visualforce is NOT your first line of defense

!  Working knowledge of HTML, CSS, and JavaScript is essential

!  Visualforce has limits

Page 23: Force.com Friday : Intro to Visualforce

Your first line of defense

Page 24: Force.com Friday : Intro to Visualforce

Proficiency in web technologies

<table> <tr> <td class="header" colspan="2">...</td> </tr> <tr> <td class="sidebar">...</td> <td class="content">...</td> </tr> <tr> <td class="footer" colspan="2">...</td> </tr></table>

Page 25: Force.com Friday : Intro to Visualforce

Proficiency in web technologies .button { background: #F8F8F8; background: linear-gradient(#F8F8F8, #D4DADC); background: -webkit-linear-gradient(#F8F8F8, #D4DADC); background: -moz-linear-gradient(#F8F8F8, #D4DADC); background: -o-linear-gradient(#F8F8F8, #D4DADC); background: -ms-linear-gradient(#F8F8F8, #D4DADC); filter: progid:DXImageTransform.Microsoft.gradient(...);}

Page 26: Force.com Friday : Intro to Visualforce

Limits

!  Page Size: 15 MB

!  Viewstate Size 135 KB

Page 27: Force.com Friday : Intro to Visualforce

If nothing else, remember this…

!  Visualforce is powerful – use it judiciously

!  If you don’t know basic HTML, CSS, and JavaScript concepts, no amount of Visualforce

magic will help you

!  Pay attention to performance at all times

!  If you don’t know… ASK

http://developer.force.com | Boards | Visualforce

Page 28: Force.com Friday : Intro to Visualforce

If nothing else, remember this…

!  Developer.force.com

!  Bit.ly/IntroVF-pkg

!  Bit.ly/visualforce-workbook

!  Advanced Visualforce Webinar

!  “7 Habits of Highly Efficient Visualforce Pages”

!  “Building the New AppExchange Using Responsive Design”

DF Recorded Sessions

Page 29: Force.com Friday : Intro to Visualforce

Q & A

Page 30: Force.com Friday : Intro to Visualforce

Survey

Your feedback is crucial to the success of our webinar programs. Thank you!

http://bit.ly/forcefriday

Page 31: Force.com Friday : Intro to Visualforce

Loremelle Volupat

Item Fig.1 Fig.2

Ipsum Lorem 0 0

Lorem Ipsum 0 0

Loremelle Volupat 1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper

1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper 0

Goal

0

Item 2

0

Item 1

Title Header Subhead !  Bullet Point

Colors & Artwork – light, use theme “elemental”

Page 32: Force.com Friday : Intro to Visualforce

Loremelle Volupat

Item Fig.1 Fig.2

Ipsum Lorem 0 0

Lorem Ipsum 0 0

Loremelle Volupat 1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper

1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper

Colors & Artwork – light, use theme “elemental”

0

Goal

0

Item 2

0

Item 1

Title Header Subhead !  Bullet Point

Page 33: Force.com Friday : Intro to Visualforce

Loremelle Volupat

Item Fig.1 Fig.2

Ipsum Lorem 0 0

Lorem Ipsum 0 0

Loremelle Volupat 1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper

1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper 0

Goal

0

Item 2

0

Item 1

Title Header Subhead !  Bullet Point

Colors & Artwork – light, use theme “elemental”

Page 34: Force.com Friday : Intro to Visualforce

Loremelle Volupat

Item Fig.1 Fig.2

Ipsum Lorem 0 0

Lorem Ipsum 0 0

Loremelle Volupat 1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper

1.  Lorem Ipsum 2.  Solare Dolor Amettre 3.  Ipsum Volupat Ullamcorper 0

Goal

0

Item 2

0

Item 1

Title Header Subhead !  Bullet Point

Colors & Artwork – light, use theme “elemental”

Page 35: Force.com Friday : Intro to Visualforce

Next week

0 Lorem Ipsum 0 0

Ullamcorp Volupat Lorem

0

Loremelle Chart

0 Dolor

0 0 --

0 0 0 0

0 0 0 --

This week

Last week

Last week

0 0 0 0 This week

Page 36: Force.com Friday : Intro to Visualforce

Item 1

Item 2

Item 3

Item 4

Chapter 1

Page 37: Force.com Friday : Intro to Visualforce

Bulleted List

This week: !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre

Next week: !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre !  Lorem– Ipsum Dolor Amettre

Page 38: Force.com Friday : Intro to Visualforce

Designs created for Email, Technical Library & Blog

SUBHEAD

Subhead !  Begin implementing designs for blog and articles in staging environment !  Create designs for webinar, calendar and signup page

Lorem dolor amettre

Page 39: Force.com Friday : Intro to Visualforce

Launching today Feb 19: Lorem Ipsum Launching soon Mar 12: Lorem Ipsum Mar 26: Lorem Ipsum Scheduling TBD: Lorem Ipsum TBD: Lorem Ipsum

Online Events

Jan 31

Recent: Upcoming Topics: In Market:

0 reg 0 attended 0 live reg

Feb 20 0 reg 0 attended

Feb 26 0 reg 0 attended

Feb 7 0 reg 0 attended

Feb 5 0 reg 0 attended

Feb 7 0 reg 0 attended

Page 40: Force.com Friday : Intro to Visualforce

Website Unity

1280x1024 widescreen