• swar
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies

It is my understand that it is possible to lend SOAP API Support to Professional Edition users by embedding a 'Partner Token' in the SOAP envolope headers.


I also understand that people have done this to give professional edition clients access to their package that require SOAP API access even though that client has professional edition which doesn't natively support the APIs without an upgrade.

 

I understand that the same API access rules exist for the REST API (only avalible in ultimate, enterprise, dev. instances) but I'm curious if a similar procedure for 'lending' access to 'professional edition' for the REST API.

 

Also, anyone whom knows of a good explanation for embedding the 'Partner Token' into the API Calls as described above, as it seems like people have had 'mixed' results...

Hi all

 

i have applied a scroll for the pageblocktable using a ouputpanel but now i want to freeze the header of the pageblock table for that i googled and found that by using css we can do so and i tried the css on the headerclass it is not working when i tried to apply color to the text it worked, seting the position to fixed also worked but then freezing the header does not work i do not get an idea wat is the problem. plz help me

below is the code:

<apex:page Controller="mycontroller">
<style>
.container
{
   overflow:auto;  
   height:50px;     
}
.headerRow .headerStyle
{
     color: #CC0000 !important; 
     position:relative;
     TOP: expression(this.offsetParent.scrollTop-2);         
}

</style>
     <apex:form >
        <apex:pageBlock title="My Content" mode="edit">
           <apex:pageBlockSection title="My Content Section" columns="1"   > 
               <apex:outputPanel layout="block" styleClass="container"  >           
                <apex:pageBlockTable value="{!temp}" var="item" align="top" width="100%" columns="10" headerclass="headerStyle">
                    <apex:column value="{!item.password__c}" ></apex:column>                                         
                </apex:pageBlockTable>
             </apex:outputPanel>           
            </apex:pageBlockSection>
         </apex:pageBlock>
    </apex:form>
</apex:page>

 

 

  • September 27, 2010
  • Like
  • 0