You need to sign in to do that
Don't have an account?

Challenge not yet complete???
I am working on the Creating & Using Custom Controllers module. I have tried this a variety of ways and I am still geting a "Challenge not yet complete....here's what's wrong:
"The outputLink component is not binding to the ID of a case"
Here is my code for the page:
<apex:page controller="NewCaseListController">
<apex:repeat value="{!newCases}" var="case">
<apex:outputLink value="/{!case.Id}">{!case.CaseNumber}</apex:outputLink>
</apex:repeat>
</apex:page>
And here is my code for the Apex Class:
Public class NewCaseListController {
public String getCase() {
return null;
}
List<Case> results = new List<Case>();
private String sortOrder = 'CaseNumber';
public List<Case> getNewCases() {
results = [SELECT Id, CaseNumber FROM Case WHERE Status = 'New'];
return results;
}
}
Feedback/Help :-)
Thank you,
Orchid
"The outputLink component is not binding to the ID of a case"
Here is my code for the page:
<apex:page controller="NewCaseListController">
<apex:repeat value="{!newCases}" var="case">
<apex:outputLink value="/{!case.Id}">{!case.CaseNumber}</apex:outputLink>
</apex:repeat>
</apex:page>
And here is my code for the Apex Class:
Public class NewCaseListController {
public String getCase() {
return null;
}
List<Case> results = new List<Case>();
private String sortOrder = 'CaseNumber';
public List<Case> getNewCases() {
results = [SELECT Id, CaseNumber FROM Case WHERE Status = 'New'];
return results;
}
}
Feedback/Help :-)
Thank you,
Orchid
I'm looking at the challenge and it's trying to check for the following code in your Visualforce page:
It looks like what you have is correct. Try making your code lowercase and see if that helps. It shouldn't make a difference but you never know.
Thanks
Jeff Douglas
-
case.Id
case.CaseNumber
It saves without any errors, but when I submit the challenge I still get the same message: The outputLink component is not binding to the ID of a case Thanks, Orquidea Perez Salesforce Administrator Business Systems Analyst D: 210.630.6476 Advisors Asset Management 28025 IH 10 West Boerne, TX 78006 www.aamlive.com