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
HarryHHHarryHH 

more than one footerline?

Hello,

 

I have a list of different shopped articles/orderpositions in an apex:pageblocktable. I now want to display the total amount of money of these articles in the first footerline. The amount of money that the Customer gives to the cashier I would like to place in the second footer line and the change in the third footerline. Is that possible? At the moment I have three tags <apex:Facet value="footer"> in the column, but VF displays only the last tag.

 

Thanks for your help!

Harry

Best Answer chosen by Admin (Salesforce Developers) 
Pradeep_NavatarPradeep_Navatar

You can put css for implementing any footer text. Tryout this sample code given below :

 

          @bottom-right

           {

                    content: "Page: " counter(page) " / " counter(pages);font-size: 80%; 

           }

 

Hope this helps.