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
alo sen 6alo sen 6 

Show a bound output on the same line with pageBlock

<apex:pageBlock id="searchResults" title="Search Results"> 
<apex:outputText style="font-size:15px"  value="Number of Records:  {!FinalCount}"/> 
Is there a way to get the value of the bound field with the pageBlock line? 
Best Answer chosen by alo sen 6
James LoghryJames Loghry
I'm not sure what EXACTLY you're looking for (an image / mockup might help), but you could try the following:
 
<apex:pageBlock id="searchResults" title="Search Results, Records Displayed: {!FinalCount}">

 

All Answers

James LoghryJames Loghry
I'm not sure what EXACTLY you're looking for (an image / mockup might help), but you could try the following:
 
<apex:pageBlock id="searchResults" title="Search Results, Records Displayed: {!FinalCount}">

 
This was selected as the best answer
alo sen 6alo sen 6
This is exactly what I was looking for - Thank you so much for your help.