A NumericTextBox used in Angularjs (v1.5.8) seems to swallow the click events.
The box is included like this:
<input kendo-numeric-text-box="numericTextBox" fc-numeric-box-placeholder k-spinners="false"
k-decimals="{{ ::decimals }}" k-options="numericBoxOptions" ng-model="value"/>
The options set the min and max values. The box itself works fine, updating values as expected.
If you have a dropdown opened (bootstrap) though, clicking inside the NumericTextBox will not close the dropdown. Clicking anywhere else closes it.
Is there a way to configure NumericTextBox to facilitate this behavior?