currency viewer widget on listview

0
Currency view widget does not appear to work in a listview. Does anyone know of a way to display formatted currency in a listview, eg $10,000? Thank you, Tracy
asked
3 answers
2

All working now except for Totals in data grids.

.dollar :before { content: '$'; left: -5px; } - works for listviews, dataviews but not data grids.

.dollarsign label:before, .dollarsign .mx-datagrid-data-wrapper:before { content: "$"; padding-right: 3px; } - works for data grids. I believe this also works for listviews and dataviews.

Anyone know how to get Totals in data grids to display with $

answered
0

Give your curreny field a unique css class. In your CSS, do the following:

.MyClass :before { content: '$'; left: -5px; }

Change the content property to the type of currency needed

answered
0

Can't you just use a format string? Should be possible to do what you want.

answered