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

To add comma to column value in pageblocktable
Hi All,
i am displaying data using pageblocktable. i just want to add comma to column values which are displaying how can i achive this .
Thanks,
Harsha
Hi All,
Thanks for the reply i just solved it by using <apex:outputtext>
Thanks,
Harsha
All Answers
simply put comma example
<apex:column value="{!item.name},{!item.type}"/>
Public separator {get;set;} {separator = ',';}
<apex:Column value = "{!item.value1} {!separator} {item.value2} "
@vijit Capgemini Developer
if you are trying to put the comma in the column header
Hi All,
Thanks for the reply i just solved it by using <apex:outputtext>
Thanks,
Harsha