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
Madhura BMadhura B 

Rendering a Column doesn't show the header value

Hi,

 

My requirement is to render a column based on changes made in a picklist present in another column. I have used dataTable.

Though the data is appearing the header value doesn't appear.

 

Could someone please suggest me.

wajidawajida

Can you post the code?

RuwanthaRuwantha

In my case the issue was like this 

 

        <apex:dataTable value="{!slap}" var="row" id="theTable" cellpadding="5">
                <apex:column headerValue="Name">
                        <apex:outputText value="{!row.ap.Name}"/>
                </apex:column>
               <apex:column headerValue="Change status" rendered="{!row.ap.Status__c=='New'}" >
                       <apex:inputCheckbox value="{!row.chk}"/>
                </apex:column> 
        </apex:dataTable>

 Here it display the check boxes but not the header value "Change status". Any solution ??

J21J21
I am also having the same issue.Did you get the answer  for  this?Is it a salesforce bug?
BenzyBenzy
I am also having this problem. Any fox for this?