Hi,
I've got a problem with numerictextbox in dialog window.
In my app i've got dialog defined :
<ej-dialog target=".wrap" id="@(Model ?? "ModalWind")" title="" show-on-init="false" is-responsive="true" enable-modal="true" enable-resize="true" min-width="600">
<e-dialog-position x-value="0" y-value="0" />
<e-content-template>
<div ng-include="incloped.val"></div>
</e-content-template>
<e-animation>
<e-hide duration="0" effect="Fade" />
</e-animation>
</ej-dialog>
TextBox is displayed like this :
<div class="form-group">
<label class="label">Kwota WN</label>
<input class="form-control" ej-NumericTextbox e-showSpinButton="false" e-decimalplaces="2" e-locale="pl-PL" ng-Model="PozEdit.KwotaWN" ng-model-options=""/>
</div>
And now : when the number is writen ex: 3,5 the number is changing to 3.5 (dot not comma), after loosing focus number is changing to 3,5 again.
Problem 2 : when 3,02 is writen after 0 (zero) and comma is deleted. 3, - is ok so far, 3,0 - is changing to 3.
This problems occurs only in dialog window. When same numericbox is used directly in html everything is ok.