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.

Hi ,
I need help building kendo grid with angular 10.
I am having difficulty accessing data of nested json.
have attached pic as reference and sharing json as well.
Having issue accessing resource record for objects in array.
Please look in the pic attached for reference as i want the same.
{
"fieldTestPlanId": 509,
"Operation1": [
{
"id": 2381,
"manageOperationId": 341,
"title1": "data1",
"title2": "1",
"operationId": 55948,
"subOperationId": 56968,
"operationGoal": 1,
"instructions": " ",
"frCount": null,
"resources": [
{
"id": 38275,
"filedTestOperationId": 2381,
"resourceId": 1123,
"resourceIdWithPreFix": "1123",
"c1": null,
"c2": 2
},
{
"id": 38276,
"filedTestOperationId": 2381,
"resourceId": 2421,
"resourceIdWithPreFix": "2421",
"c1": 2.0,
"c2": null
}
]
},
{
"id": 2379,
"manageOperationId": 11,
"title1": "Unassigned",
"title2": "Unassigned",
"operationId": 2057,
"subOperationId": 2058,
"operationGoal": 3,
"instructions": null,
"frCount": null,
"resources": [
{
"id": 38273,
"filedTestOperationId": 2379,
"resourceId": 1123,
"resourceIdWithPreFix": "1123",
"c1": null,
"c2": 4
},
{
"id": 38274,
"filedTestOperationId": 2379,
"resourceId": 2421,
"resourceIdWithPreFix": "2421",
"c1": null,
"c2": null
}
]
}
],
"fieldTestPlanUUTGroupResourceList": [
{
"resorceId": 1123,
"resourceIdWithPrefix": "1123",
"resourceName": "data",
"resourceTotalActual": null,
"resourceTotalPlan": null
},
{
"resorceId": 2421,
"resourceIdWithPrefix": "2421",
"resourceName": "test",
"resourceTotalActual": null,
"resourceTotalPlan": null
}
]
}
I have looked into the documentation and found that we can only precompile the SCSS files with required colors. And, I am not able to find a way to importing single SCSS file and changing its color in runtime using CSS variables as in Material.
Telerik Recommended Way:https://www.telerik.com/kendo-angular-ui/components/styling/custom-themes/
Material Way:
https://github.com/tomastrajan/angular-ngrx-material-starter
https://medium.com/grensesnittet/dynamic-themes-in-angular-material-b6dc0c88dfd7
I have tried it but I am not able to implement such using Telerik theme. So, please confirm me whether Telerik have the support for this or have any plan for this in future.

Hello,
I would like to create a grid in which I have 2 levels of grouping in which I want to have a value in many columns on each grouping and each item.
Example:
Price week 1 Price week 2
Group A 10.00 12.00
Sub-Group 1 9.00 11.00
Product X 8.00 10.00
Product Z 10.00 12.00
Sub-Group2 11.00 13.00
Group B 20.00 22.00
Any idea on how this could be done? Positionning the data in grouping template withing columns does not seem to be possible right now. I could align the data in the template but with many columns this is gonna get tedious.
Thank you