-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems with Tabs loading using Case Overview Example #21
Comments
Well can you try to attach the code again ? |
Sorry for the late reply. Looks like this is issue with Jquery that visualstrap uses. You can try something like this
|
Hi there... Ok... so here's the code for the query that is only returning 3 records total in each of the blocks on the dashboard. public without sharing class VSDashBoard_Con2 { public List<Tasks__c> getTasks(){ I have adjusted the limits up and down and ran the query in Workbench and get more results. Can you tell what I'm doing wrong? |
Hi there,
I am just learning some of these technologies, but just wondering if you can help me figure out 2 things.
#1 -- why the tabs aren't switching using your wonderful case overview example.
Here is my code:
<apex:page standardController="Deal__c" sidebar="false" docType="html-5.0" showHeader="false" >
<style> #container { margin: 45px; font-weight: 100; } </style><apex:stylesheet value="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/0.16.1/css/semantic.css"/>
<apex:stylesheet value="/sCSS/25.0/sprites/1342034628000/Theme3/default/gc/versioning.css" />
<apex:stylesheet value="/sCSS/25.0/sprites/1342034628000/Theme3/default/gc/extended.css" />
<apex:include pageName="DealDetailView"/>
<apex:tab label="History" name="ActivityHistory"
id="tabActHist" >
<apex:relatedList subject="{!Deal__c}"
list="ActivityHistories" pageSize="15" />
</apex:tab>
<apex:tab label="Attachments" name="CombinedAttachments"
id="tabCombinedAtt" >
<apex:relatedList subject="{!Deal__c}"
list="CombinedAttachments" pageSize="15" />
</apex:tab>
<apex:tab label="Email Delivery" name="EmailDelivery" id="tabEmailDel" >
</apex:tab>
<apex:tab label="Feed" name="feed" id="tabfeed" >
<chatter:feed entityId="{!Deal__c.id}" feedItemType="TextPost" showpublisher="True"></chatter:feed>
</apex:tab>
</apex:tabPanel>
I am using the dashboard and it works great, except the number of items return in my query is limited to 3 even though I have set a limit in the controller to 10. I also ran the query in workbench and it returned more than 3 records... but I can't get it to show more.
Thanks!
The text was updated successfully, but these errors were encountered: