

Hi,
The MaskedTextBox is missing some features of a regular TextBox:
I think it would be logical if a MaskedTextBox should be a TextBox with mask functionality. All input controls should be as consistent as possible.
Actually, the same question applies to the following input controls:
Could this be improved please?

I would like to change the currency symbol globally, not per pipe/function or component.
So in my case I want to display amounts in "€", but the application's locale should be the default one (en-US).
I did not found anything in the documentation, any ideas?
i have query regarding the input the field
i want to assign dynamic value to field tag as in
<kendo-grid-column field="rsrce_{{group.resorceId}}">
<ng-template kendoGridCellTemplate let-dataItem="dataItem">
<input style="width:69px;height:38px;border-radius: 5px;" type="textbox" [(ngModel)]="dataItem.rsrce_{{group.resorceId}}" name="rsrceid" class="k-textbox" />
</ng-template>
</kendo-grid-column>
so basically i am not able to do this because its giving me string interpolated error, if i remove kendoGridCellTemplate , its working as expected.
But my requirement is to implement kendoGridCellTemplate .
Please help here.
<kendo-dropdownlist [defaultItem]="selectGateDefaultItem" [itemDisabled]="gateChecklistItemDisabled" [data]="gates | async" [textField]="'NAME'" [valueField]="'ID'" (selectionChange)="openGatePage($event)" [popupSettings]="{height: 100, width: 280}" [iconClass]= "gateIcon" id="gateChecklistDropdown" style="width: 250px"> <ng-template kendoDropDownListItemTemplate let-dataItem> <span class="template">{{dataItem.NAME}}</span> </ng-template> <ng-template kendoDropDownListValueTemplate let-dataItem> <span class="selectedValueTemplate">{{ dataItem.NAME }}</span> </ng-template></kendo-dropdownlist>
Hello
I am facing issue on kendo window,
my requirement is i have a button inside kendo grid particular column/cell.
and when i click on that button a window should open outside kendo grid.
