Currency viewer for Decimal

0
How can I adjust the currency viewer widget so that I can choose variables of the type Decimal rather than Float/Integer only
asked
2 answers
1

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):

eurosign

answered
0

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.

answered