You need to sign in to do that
Don't have an account?
Blake Tanon
Visualforce links don't work in console (sales)
I'm trying to create new layouts, the one I've done for contacts is posted below. All of the links/functions work when viewing the page normally but when a contact is looked at via the console none of the links work and i'm not sure why.... any ideas?
<apex:page action="{!if($User.LastName =='Tanon', null, urlFor($Action.Contact.View,$CurrentPage.parameters.id,null,true))}" standardController="Contact" showHeader="true" tabStyle="contact"> <style> .activeTab {background-color: #236FBD; color:white; background-image:none} .inactiveTab { background-color: lightgrey; color:black; background-image:none} </style> <apex:tabPanel switchType="client" selectedTab="tabdetails" id="ContactTabPanel" tabClass="activeTab" inactiveTabClass="inactiveTab"> <apex:tab label="Details" name="ConDetails" id="tabdetails"> <apex:detail relatedList="false" title="true" inlineEdit="true"/> </apex:tab> <apex:tab label="Open Activities" name="Activities" id="tabAct"> <apex:relatedList subject="{!contact}" list="OpenActivities" /> </apex:tab> <apex:tab label="Activity History" name="ActivitiesHist" id="tabActHist"> <apex:relatedList subject="{!contact}" list="ActivityHistories" /> </apex:tab> <apex:tab label="Orders" name="Orders" id="tabOrder"> <apex:relatedList subject="{!contact}" list="Orders__r" pageSize="10"/> </apex:tab> <apex:tab label="Sales" name="Sales" id="tabSales"> <apex:relatedList subject="{!contact}" list="Transactions__r" pageSize="50"/> </apex:tab> <apex:tab label="Pipeline" name="Opportunities" id="tabOpp"> <apex:relatedList subject="{!contact}" list="Opportunities"/> </apex:tab> <apex:tab label="Partnerships" name="Partnerships" id="tabPartner"> <apex:relatedList subject="{!contact}" list="Partner_Members__r" pageSize="10"/> </apex:tab> </apex:tabPanel> </apex:page>
custom links set to open in a new browser window all open outside of the console in a new browser window or popup.. if there is a pop-up blocker then it won't....