You need to sign in to do that
Don't have an account?
https://developer.salesforce.com/trailhead/force_com_dev_intermediate/visualforce_mobile_salesforce1/visualforce_mobile_salesforce1_mobile_frameworks#challenge
Hi friends, m getting below error in above trailhead,, please help me to solve this issue,
error: The page isn't using the Bootstrap List Group component.
error: The page isn't using the Bootstrap List Group component.
Your page should link to bootstrap cdn.
Try this:-
<apex:page standardController="Contact" docType="html-5.0" recordSetVar="contacts">
<apex:stylesheet value="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"/>
<apex:includeScript value="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"/>
<ul class="list-group">
<apex:repeat value="{!contacts}" var="c">
<li class="list-group-item"><apex:outputLabel value="{!c.name}"/></li>
</apex:repeat>
</ul>
</apex:page>
Please mark this as solution if it works for you.
Thanks,
Arpit Sethi