Can we give Percent Symbol after value in datagrid Coulmn ?

0
I Want to add “%”  Symbol after Value. Can we do it in mendix ? Thanks in Advance.
asked
2 answers
2

Would CSS not do the trick?
 

/* Add an percentage after */
a::after {
  content: "%";
}

Regards,

Ronald

 

answered
0

You can use a calculated attribute, although in your case its not really calculated 

  1. Add an attribute in your entity
  2. In the attribute properties, select Calculated and develop a microflow which concatenate Deviation and % symbol and return it as String.
  3. use that new attribute in your reports

answered