• ward.geis
  • NEWBIE
  • 0 Points
  • Member since 2010

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

SO, I'm trying to build a case multi-edit page that will be using a case list to define the cases shown when the custom link is selected.

 

here is my existing code, which works great, but will only return 20 rows, regardless of how many are in the list:

 

 

<apex:page standardController="Case" 
           recordSetVar="cases"
           tabStyle="Case" sidebar="false">
  <apex:form >
    <apex:pageBlock >
      <apex:pageMessages />
      <apex:pageBlockButtons >
        <apex:commandButton value="Quick Save" 
                            action="{!quicksave}"/>
        <apex:commandButton value="Save" 
                            action="{!save}"/>
      </apex:pageBlockButtons>
      <apex:pageBlockTable value="{!cases}" 
                           var="c">
        <apex:column value="{!c.casenumber}"/>
        <apex:column value="{!c.subject}"/>
        <apex:column headerValue="Upgrade Status">
         <apex:inputField value="{!c.Upgrade_Status__c}"/>
         </apex:column>
        <apex:column headerValue="SP Installed">
         <apex:inputField value="{!c.SP_Installed__c}"/>
         </apex:column>
        <apex:column value="{!c.SP_To_Install__c}"/>
        <apex:column headerValue="Status">
          <apex:inputField value="{!c.status}"/>
        </apex:column>
      </apex:pageBlockTable>    
    </apex:pageBlock>
  </apex:form>
</apex:page>

 I'm not particularly sure how I should be using the <apex:repeat> tag, can someone lend some assistance, seems like it should be easy enough but it's stumping me.

 

Cheers,

Ward

 

I'm developing two VP pages to be held in iframes in our customer portal layout.

 

1 frame is in the skinny left sidebar, one frame is in the larger field type aread on the right.

 

I need to have a link in the sidebar vf page that would populate the right side (larger) frame with the default case creation details style page when you click on the link.

 

Right now when I have the link set to https://cs3.salesforce.com/500/o, it just populates the skinny left frame with a full SF frameset, not what I want.

 

How do I get the link on the skinny frame to populate a change to the larger frame on the right?

 

Best regards,

 

Ward Geis

 

SO, I'm trying to build a case multi-edit page that will be using a case list to define the cases shown when the custom link is selected.

 

here is my existing code, which works great, but will only return 20 rows, regardless of how many are in the list:

 

 

<apex:page standardController="Case" 
           recordSetVar="cases"
           tabStyle="Case" sidebar="false">
  <apex:form >
    <apex:pageBlock >
      <apex:pageMessages />
      <apex:pageBlockButtons >
        <apex:commandButton value="Quick Save" 
                            action="{!quicksave}"/>
        <apex:commandButton value="Save" 
                            action="{!save}"/>
      </apex:pageBlockButtons>
      <apex:pageBlockTable value="{!cases}" 
                           var="c">
        <apex:column value="{!c.casenumber}"/>
        <apex:column value="{!c.subject}"/>
        <apex:column headerValue="Upgrade Status">
         <apex:inputField value="{!c.Upgrade_Status__c}"/>
         </apex:column>
        <apex:column headerValue="SP Installed">
         <apex:inputField value="{!c.SP_Installed__c}"/>
         </apex:column>
        <apex:column value="{!c.SP_To_Install__c}"/>
        <apex:column headerValue="Status">
          <apex:inputField value="{!c.status}"/>
        </apex:column>
      </apex:pageBlockTable>    
    </apex:pageBlock>
  </apex:form>
</apex:page>

 I'm not particularly sure how I should be using the <apex:repeat> tag, can someone lend some assistance, seems like it should be easy enough but it's stumping me.

 

Cheers,

Ward