I want to display a field in a object to show just the whole number/integer value. This field has decimal values in the structure but for i need to show the integer value for this VF page only.
<apex:pageBlockSectionItem >
<apex:outputLabel value="# Connections" for="Connections"/>
<apex:outputText id="Connections" value="{!Event__c.Total_Connections__c}" />
</apex:pageBlockSectionItem>
No of connections has to be shown as whole number.
thanks