You need to sign in to do that
Don't have an account?

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}">↑</apex:outputtext>
<apex:outputText rendered="{!internetListingSorting.sortByCompanyIDAscending==2}">↓</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}">↑</apex:outputtext>
<apex:outputText rendered="{!internetListingSorting.sortByNameAscending==2}">↓</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