This question is locked. New answers and comments are not allowed.
Hello,
I'm using a NumericTextBox inside a Grid.
I think there is a bug in the NumericTextBox focus out event.
When I modify its value, then click outside the textbox, anywhere in the page, the OnChange event is not fired.
Also, very strangely, when I click inside the textbox, the textbox' focusin internal event is fired 3 times.
I think this focus out bug is quite bad from usability point of view, many users modify the value, then click elsewhere and expect that value to be updated.
I'm using a NumericTextBox inside a Grid.
// grid column columns.Bound( ot => ot.Volatility ) .HtmlAttributes( new { @class = "col-volatility number", data_strikePriceId = "0", data_strikeprice = "0" } );// Edit volatility editor template@(Html.Telerik().NumericTextBox().Name( "Volatility" ).Spinners( true ) .MinValue( -1 ).MaxValue( 1 ) .IncrementStep( 0.01 ).DecimalDigits( 2 ) .ClientEvents( events => events.OnChange( "onChangeVolatilityPerPosition" )))I think there is a bug in the NumericTextBox focus out event.
When I modify its value, then click outside the textbox, anywhere in the page, the OnChange event is not fired.
Also, very strangely, when I click inside the textbox, the textbox' focusin internal event is fired 3 times.
I think this focus out bug is quite bad from usability point of view, many users modify the value, then click elsewhere and expect that value to be updated.