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

Why can't connect String in visualforce page?
I connect a Double and String:
It show error:
Why can't connect String in visualforce page?
<apex:column headerValue="Price" value="{!MapProducts[a]['Price__c'] & '$'}"/>
It show error:
Syntax error. Extra '&'
Why can't connect String in visualforce page?
Try this,
<apex:column headerValue="Price" value="{!MapProducts[a]['Price__c'] '&' '$'}"/>
Thanks,
K.Kamala,
Sweet Potato Tec.
Correct it is: value="{!MapProducts[a]['Price__c']}$"