visualforce remoteobject

Post on 29-Nov-2014

312 Views

Category:

Documents

4 Downloads

Preview:

Click to see full reader

DESCRIPTION

My presentation in Chennai Salesforce Developer meetup

TRANSCRIPT

Chennai Salesforce Platform Developer User Group

Visualforce Remote ObjectSep 27, 2014

Speaker

KaranrajSalesforce Developer@karanrajs

Visualforce Remote Object

1. Useful tool for quickly creating pages with basic data operations.

2. DML operation from Java script.

3. What are current possible method?1. API call2. Java script remoting[With Apex controller]

4. More suitable for Salesforce1 application.

5. No Apex controller and No Test class

#SalesforceChennai

Remote object parts1. Access definition – Written in visual force

2. Data access function – Written in java script.

3. Supported actions in Data access function1. Retrieve2. Create3. Update4. Upsert5. Delete

Demo

#SFDUGChennai

Initiate and Get Records

1. Initiate the remote object

2. Retrieve method

#SalesforceChennai

Create, Update and Delete

3. Create – sObjectModel.Create()

4. Update – sObjectModel.update();

5. Delete – sObjectModel.del();

Tips

• Field level security• Transaction Boundaries• Avoid complex business logic in java script

#SFDUGChennai

Limits

• All your Visualforce limits still apply. You can’t escape • You can retrieve a maximum of 100 rows in a single request. [Use OFFSET to

query more]

Try it yourself!

Source Code - http://bit.ly/VFRemoteobj

Create a Visualforce page

Paste the code and run it

#SFDUGChennai

Salesforce1 Resources

Visualforce Developer Guide – http://bit.ly/VFGuide

Blogs:

Visualforce Remote Object - http://bit.ly/Remoteblog

#SFDUGChennai

Thank You

top related