• Estíbaliz Tambo González
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hello.

I have a problem. I made a visualforce page in order to visualice a related list customiced. I have the following code:

<apex:page standardController="**" extensions="***" showHeader="false" sidebar="false">
    <script type="text/javascript">        
        function redirec(redirectUrl){
            sforce.console.openPrimaryTab(null, redirectUrl, true, '', openSuccess);
        }
    </script>
    <apex:pageBlock rendered="{!**}" > 
        <apex:form >
            <apex:pageBlockTable value="{!***}" var="ret">
                <apex:column >
                     <apex:facet name="header">                      
                         <apex:outputPanel >{!$ObjectType.Account.Fields.***.Label}</apex:outputPanel>
                      </apex:facet>
                    <apex:commandLink target="_top" action="{!URLFOR('/' + ret.***)}">{!ret.***}</apex:commandLink>
                </apex:column>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.***.Fields.***.Label}" value="{!ret.***}"/>
            </apex:pageBlockTable>             
        </apex:form>
    </apex:pageBlock>
</apex:page>

I visualice it in Salesforce classic (web) and it runs crrectly, but when I visualice in Salesforce1 it becomes with an strange css.

Could you help me? I need o visualice my visualforce page in Salesforce1 but I can't visaulice it correctly. 

Have I use any special labels?

Thanks and best regards,
Hello.

I have a problem. I made a visualforce page in order to visualice a related list customiced. I have the following code:

<apex:page standardController="**" extensions="***" showHeader="false" sidebar="false">
    <script type="text/javascript">        
        function redirec(redirectUrl){
            sforce.console.openPrimaryTab(null, redirectUrl, true, '', openSuccess);
        }
    </script>
    <apex:pageBlock rendered="{!**}" > 
        <apex:form >
            <apex:pageBlockTable value="{!***}" var="ret">
                <apex:column >
                     <apex:facet name="header">                      
                         <apex:outputPanel >{!$ObjectType.Account.Fields.***.Label}</apex:outputPanel>
                      </apex:facet>
                    <apex:commandLink target="_top" action="{!URLFOR('/' + ret.***)}">{!ret.***}</apex:commandLink>
                </apex:column>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.Account.Fields.***.Label}" value="{!ret.***}"/>
                <apex:column headerValue="{!$ObjectType.***.Fields.***.Label}" value="{!ret.***}"/>
            </apex:pageBlockTable>             
        </apex:form>
    </apex:pageBlock>
</apex:page>

I visualice it in Salesforce classic (web) and it runs crrectly, but when I visualice in Salesforce1 it becomes with an strange css.

Could you help me? I need o visualice my visualforce page in Salesforce1 but I can't visaulice it correctly. 

Have I use any special labels?

Thanks and best regards,