正在尝试编辑Visualforce页面中显示的字段,并且是编码新手。我收到这个(示例)错误消息:
Error: Could not resolve field 'Student_Id__c' from <apex:inputField> value binding '{!att.Student_Id__c}' in page AddAttendee
任何帮助都将不胜感激!
原始工作页面:
<apex:page controller="AddAttendee" id="page" showHeader="f
长时间的SFDC管理,第一次潜入APEX。
我为一个Dashboard组件(visualforce页面)构建了一个自定义控制器。控制器可以工作,但需要单元测试才能推送到生产环境中(不要问组织的覆盖率太低)。
下面是控制器:
public with sharing class retrieveMRR {
public Summary[] Summaries { get; set; }
public retrieveMRR() {
AggregateResult[] results =
[SELECT SUM(Opportunity.MRR_Projected_EOM_
现在,我得到的错误是检查sObject People_Language__c的无效字段。
不确定它是否不喜欢包装类的使用,但我没有看到问题。
这是主计长
public with sharing class myClass {
public String pId {get; set;}
public list<Wrapper>pLanguages {get; set;}
//CONSTRUCTOR
public myClass(){
我得到了这个错误:
Description Resource Path Location Type
Save error: Unknown property 'OpportunityStandardController.getLines' AlexHelloWorld.page /SFDC/src/pages line 0 Force.com save problem
VF页面:
<apex:page standardController="Opportunity" extensions="AlexHelloWorld
我将WpDataTables用于Wordpress plugin。但是,这是一般的mySQL Query,在此之前它运行良好。
SELECT posts_apex_po.ID AS apex_po_ID,
posts_apex_po.post_title AS apex_po_post_title,
posts_apex_po_payment.ID AS apex_po_payment_ID,
posts_apex_po_payment.post_title AS apex_po_payment_post_title
FROM wp_posts AS posts_apex_po, wp_pos
类
public with sharing class contactInsert {
public contact myC{get;set;}
public contactInsert(){
myC = new Contact();
}
public PageReference iSave(){
insert myC;
return new pageReference('/'+myC.id);
}
}
页面
<apex:page controller="contactInse