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

Apex:Facet footer getting everything aligned to the left
The Footer of my pageblock table below is always aligning the data in footer to the left. Is there any way to center align it?
<apex:column style="text-align:center;">
<apex:facet name="header">NSY Quota</apex:facet>
<apex:outputText value="{0,number,###,###,###,###,###}">
<apex:param value="{!FinalMap[Grid].RepNSY_Quota}"/>
</apex:outputText>
<apex:facet name="footer"><apex:outputText value="{0, number,###,###,###,###,###}">
<apex:param value="{!FooterNSYQuota}"/>
</apex:outputText></apex:facet>
</apex:column>
Try using style="text-align:center" with apex:outputText in apex:facet name="footer"
Like:
<apex:facet name="footer"><apex:outputText value="{0, number,###,###,###,###,###} " style="text-align:center" >
but you can use <apex:pageBlockTable footerClass="XXXXXXX"> or place div inside apex:facet. viz. https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_dataTable.htm