Neils, you might try this variation if the positioning of the euro sign is wrong (note the symbol is now added before the label element): - updated CSS below
.dollarsign label:before, .dollarsign .mx-datagrid-data-wrapper:before { content: "$"; padding-right: 3px; } .eurosign label:before, .eurosign .mx-datagrid-data-wrapper:before { content: "€"; padding-right: 3px; }Edit: Add the class as shown (without the leading fullstop):
Why would you use a separate widget for that? You can use styling as well. e.g.
<changeMeToCorrectClassSelector>:before {
content: '$';
left: -5px;
}
Just give the currency field a class, and add the right currency token in the Content field.