You need to sign in to do that
Don't have an account?
Lightning Experience Rollout Superbadge - Problem with AccountsTab VF Page
Hiya
I'm trying to complete the LEX Rollout Superbadge (released today). I've updated my code to style it for LEX and am getting an error that doesn't make sense, since the tag is there!
t means the challenge fails every time I check it. Of course, if the code is slightly off, I'd love your input, since I am not a developer by trade I'm having to teach myself.

I'm trying to complete the LEX Rollout Superbadge (released today). I've updated my code to style it for LEX and am getting an error that doesn't make sense, since the tag is there!
t means the challenge fails every time I check it. Of course, if the code is slightly off, I'd love your input, since I am not a developer by trade I'm having to teach myself.
<apex:page standardStylesheets="false" standardController="Account" recordSetVar="accounts" tabStyle="account"> <apex:slds /> <div class="slds-scope"> <apex:pageBlock > <apex:pageBlockTable value="{!accounts}" var="a"> <table class="slds-table slds-table_cell-buffer slds-table_bordered"> <apex:column headerValue="{!$ObjectType.Account.Fields.Name.Label}"> <apex:outputLink value="{!URLFOR($Action.Account.View, a.id)}">{!a.name}</apex:outputLink> </apex:column> </table> </apex:pageBlockTable> </apex:pageBlock> </div> </apex:page>
https://trailhead.salesforce.com/en/projects/workshop-lightning-programmatic/steps/programmatic-step-1
All Answers
https://trailhead.salesforce.com/en/projects/workshop-lightning-programmatic/steps/programmatic-step-1