I'm using the Unplugged Mobile Controls and have a customised version of the UnpFlatView.
Inside the repeat control, which is bound to a view, I'm trying to display a column value from the view formatted as a currency field, with the following code :-
<xp:text escape="true" id="computedField3">
<xp:this.value><![CDATA[#{javascript:thisRowData.getColumnValue("Cost");}]]></xp:this.value>
<xp:this.converter>
<xp:convertNumber
type="currency">
</xp:convertNumber>
</xp:this.converter>
</xp:text>
The value is displayed - but without the currency symbol.
I have also tried removing the converter and changing the format of the column in the view to currency format - but again just get the numeric value.
Any ideas how I can get a formatted currency value to display?