在Salesforce中可以对某一个Object的Standard Button或Link进行重写,来实现我们特定的逻辑过程,比如:在删除某个Object之前要判断该Object的某个Field的状态;或者在New一个Object的时候要对一些Field进行预赋值。 1):如下图所示,展现了一个Object中所有的Button,Link和Action,那么用红框框出来的便是Standard的 2):这里...
对于第一个组件,将 List View(列表视图)组件拖到页面上。 在Desktop(桌面)下拉列表中,单击 Tablet - Portrait(平板电脑-竖屏模式)。画布的预览布局从标准的单列变为两列。 从左侧的 Standard(标准)组件菜单中把 List View(列表视图)拖到左列。 使用右侧栏中的属性列表设置该组件的属性。 在Object(对象)下拉...
Standard Platform Event Object List AIPredictionEvent AIUpdateRecordEvent AppointmentSchedulingEvent AssetCancelInitiatedEvent AssetAmendInitiatedEvent AssetRenewInitiatedEvent AssetTokenEvent BatchApexErrorEvent BillingScheduleCreatedEvent CommerceDiagnosticEvent ConsentEvent ConsentUnsubscribeAllEvent CreateAss...
1.创建相关详细页的Controller,此Controller的构造函数应涵盖ApexPages.StandardController,ApexPages.StandardSetController两个参数 CompanyDetailController 2.创建相应的page,此page用于显示view的布局 CompanyDetailPage 3.修改Company Info这个object的view,修改成override with visualforce Page 4.显示效果:当在窗口输入:htt...
Login Products Salesforce Marketing Cloud ExperiencesTrailblazer Account Access Trailhead, your Trailblazer profile, community, learning, original series, events, support, and more. Products Back Products Agentforce Back Agentforce Humans with Agents drive customer success toge...
The name of the standard object. Type: String Valid Values: ACCOUNT | CAMPAIGN | CASE | CONTACT | CONTRACT | DOCUMENT | GROUP | IDEA | LEAD | OPPORTUNITY | PARTNER | PRICEBOOK | PRODUCT | PROFILE | SOLUTION | TASK | USER Required: Yes DocumentTitleFieldName The name of the field ...
1.创建相关详细页的Controller,此Controller的构造函数应涵盖ApexPages.StandardController,ApexPages.StandardSetController两个参数 代码语言:javascript 复制 1publicwithout sharingclassCompanyDetailController{2privateMap<String,String>params;34publicCompany_Info__c companyInfo{get;set;}56publicCompanyDetailController(...
staticSalesforceStandardObjectNamevalueOf(Stringname) Returns the enum constant of this type with the specified name. staticSalesforceStandardObjectName[]values() Returns an array containing the constants of this enum type, in the order they are declared. ...
publicclassListViewButtonDemo{publicList<Account>accounts{get;privateset;}publicListViewButtonDemo(ApexPages.StandardSetController stdSetController){//accounts = (List<Account>) stdSetController.getSelected();accounts=(List<Account>)stdSetController.getRecords();}publicPageReferencesave(){try{update accounts...
“Get a list of all contacts with each contact's account name.” We can query the Contact object, but it doesn't have an Account Name field. The account name is actually the Name field on the Account that's related to the Contact. In an org, you use a formula field t...