Hi,
I'm using an UpDown control whose binded to a property of type int?.
I have defined the control like this:
<Syncfusion:UpDown
MinValidation="OnKeyPress"
MinValue="1"
EnableRangeAdorner="True"
EnableExtendedScrolling="True"
UseNullOption="True"
Step="1"
Value="{Binding ShowLastNTransactions}"
>
</Syncfusion:UpDown>
The UseNullOption property correctly works when the user delete the cell content (the binded property is correctly set to null and the content is cleared).
Otherwise, when the form is shown for the first time and the binded property is equal to null, the cell content is not shown empty but, instead, it contains the value "1".
What I have to do in order to have blank cell content at startup if the binded property is null?
Best regards,
Silvio