• Praz01
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 5
    Replies

Hi,

 

I have written the following code and the tabs are not switching.

 

 

<apex:page id="AdminReportPage" standardController="Account" showHeader="true">
    <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="buyerIdentificationAdmin" id="theTabPanel" tabClass='activeTab' inactiveTabClass='inactiveTab'>
        <apex:tab label="Data Quality Admin" name="dataQualityAdmin" id="tabOne">
            <c:admindataqualitycomponent></c:admindataqualitycomponent>
        </apex:tab>
        <apex:tab label="Buyer Identification Admin" name="buyerIdentificationAdmin" id="tabTwo">
            <c:adminbuyeridentificationcomponent></c:adminbuyeridentificationcomponent>
        </apex:tab>
    </apex:tabPanel>
</apex:page>

 

 

 

Any help will be appreciated

 

Thanks

 

Praz

  • October 27, 2010
  • Like
  • 0

In the properties set up in profiles there is no option for View All fro products..So how can I grant that facility for product records..I have granted the org-wide viewall access and gave read permission for product but it is not showing. Please help me

  • October 22, 2010
  • Like
  • 0

I want to diplay some text in the page which I don't want to hardcode or type in the page rather using some properties file for this. Can I used static resource file for this. If yes how can I? I did not get any reference from the pdfs.

 

 

  • October 22, 2010
  • Like
  • 0

I am using the following code for past 1 year but suddenly today this error cropped up which was not there earlier

 

Account[] accts = new Account[]{};
        accts.add(new Account(name = 'ApexTestPOSController1', Local_Id__c = 'SimId2009083001'));
        accts.add(new Account(name = 'ApexTestPOSController2', Local_Id__c = 'SimId2009083002'));
        accts.add(new Account(name = 'ApexTestPOSController3', Local_Id__c = 'SimId2009083003'));
        insert accts;

 

 

How to get rid of it?

  • October 22, 2010
  • Like
  • 0

I want to diplay some text in the page which I don't want to hardcode or type in the page rather using some properties file for this. Can I used static resource file for this. If yes how can I? I did not get any reference from the pdfs.

 

 

  • October 22, 2010
  • Like
  • 0

I am using the following code for past 1 year but suddenly today this error cropped up which was not there earlier

 

Account[] accts = new Account[]{};
        accts.add(new Account(name = 'ApexTestPOSController1', Local_Id__c = 'SimId2009083001'));
        accts.add(new Account(name = 'ApexTestPOSController2', Local_Id__c = 'SimId2009083002'));
        accts.add(new Account(name = 'ApexTestPOSController3', Local_Id__c = 'SimId2009083003'));
        insert accts;

 

 

How to get rid of it?

  • October 22, 2010
  • Like
  • 0