• v.k
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
creating a mass edit of related records and want the first 2 fields in the table to display, without wrapping. Have tried width statements, etc. without luck - continue to get wrapping on the first 2 (non-input) fields.
 
<apex:page standardController="Products_and_Services__c" extensions="extProductsServices"
  recordSetVar="Products_and_Services__c" tabstyle="Opportunity" sidebar="false">
<apex:form >
<apex:pageBlock >
<apex:pageMessages />
<apex:pageBlockButtons >
  <apex:commandButton value="Save" action="{!save}"/>
  <apex:commandButton value="Cancel" action="{!cancel}"/>
</apex:pageBlockButtons>
<apex:pageBlockSection columns="1">
  <apex:pageBlockTable columnswidth="100%" value="{!lstProductsServices}" var="prds">
     <apex:column width="100%" headerValue="Prd#" width="100%" value="{!prds.Name}"/>
     <apex:column width="100%" headerValue="Name" width="100%" value="{!prds.Product_Name__c}"/>
     <apex:column headerValue="Proc.Fee">
     <apex:inputField value="{!prds.Processing_Fee__c}"/>
</apex:column>
......