function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
wsuycottwsuycott 

Column wrap within pageBlockTable

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>
......
v.kv.k

Any luck with this one.