Hi,
How do I set the default number of decimal places for all "NumericTextBoxes" to 2.
Currently all NumericTextBox decimal places are default to 3.
I have multiple Grids with decimal columns which can be edited Inline.
<GridColumn Field=
"@nameof(Item.Price)"
Title=
"Price"
DisplayFormat=
"{0:N2}"
/>
All numeric textboxes in edit mode are set to 3 decimal places.
Why is the default three decimal places?