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
SuvraSuvra 

Visual force <apex:inputText> component in <apex:column>

Hi,

 

In a oage I have one outputpanel containing 6 columns, each with column header and list of values displayed. Now, above each header I want to display one input Text component.

 

In the outputPanel <apex:pageblock...> and <apex:column> are used.

 

code segment is given below :

 

<apex:outputpanel layout="block" style="overflow:auto; width:950px; height:170px" rendered="{!currentSetSizeInternet>0}">
                   
                      <apex:pageBlockTable value="{!currentInternetListing}" var="VisionListing">
                        <apex:column >                 
                                                                                  
                            <apex:facet name="header"> 
                               
                                <apex:CommandLink action="{!sortByInternetCompanyID}">Company ID
                                <apex:outputText rendered="{!internetListingSorting.sortByCompanyIDAscending==1}">&uarr;</apex:outputtext>
                                <apex:outputText rendered="{!internetListingSorting.sortByCompanyIDAscending==2}">&darr;</apex:outputtext> 
                                </apex:CommandLink>
                            </apex:facet>                 
                            <apex:outputtext value="{!VisionListing.custCompId}"/>
                        </apex:column>

      
                        <apex:column >
                            <apex:facet name="header">
                                <apex:CommandLink action="{!sortByInternetName}">Listed Name
                                <apex:outputText rendered="{!internetListingSorting.sortByNameAscending==1}">&uarr;</apex:outputtext>
                                <apex:outputText rendered="{!internetListingSorting.sortByNameAscending==2}">&darr;</apex:outputtext> 
                                </apex:CommandLink>
                            </apex:facet>                 
                            <apex:outputtext value="{!VisionListing.listedName}"/>
                        </apex:column>

 

Now, where to put the <apex:inputText> field, such that it'll come above the Column Headings??

 

Please help.

 

Thanks in advance,

Suvra