Hello,
I like to use syncfusion components. And now I need to format my grid column.
<e-column
field="Quantita"
header-text="Quantità"
width="150"
:filter="filter"
format="#,##0.00"
type="number"
clip-mode="EllipsisWithTooltip"
:validation-rules="customRulesQuantityOfOperations"
/>
So, when I write 1200.00 it format in 1,200.00 on column "Quantita"
I want a different format. I want insert 1200.00 and I want 1.200,00
what type of format I need to use?
Thank you