Hi team,
My company purchased two licenses for KendoUI angular and I am one of the senior software engineers. My question is how should I apply license for KendoUI angular version because I am using KendoUI component by installing packages from NPM which is publicly accessible for everyone. Is there any special build or something we missed? How do you guys validate licensing for KendoUI angular version?
Looking forward to your reply.
Thank you
Hadi
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
>