Hello everybody.
I am trying to implement ValueChange event of sfNumericTextBox. But the complier throws design time error which suggest that there is mismatch my method and its argument. I have checked and recheck but I cannot find any error in my code.
Below is code block throwing the error and my method
<div class="col-6">
<SfNumericTextBox @bind-Value="@QuantityBought"
Placeholder="Quantity"
TValue="double?"
FloatLabelType="FloatLabelType.Auto"
Enabled="true"
TabIndex="5">
<NumericTextBoxEvents TValue="double?" ValueChange="@QuantityChangeHandler"></NumericTextBoxEvents>
</SfNumericTextBox>
</div>
public double? QuantityBought { get; set; }
public void QuantityChangeHandler(ChangeEventArgs<double?> args)
{
//....
}
Thanks for the usual prompt response