

Hello,
I need to release my application with a limited set of preloaded loales (EN, DE, ES, FR, IT).
But i need to be able to add any locales at runitme, after the application release.
Maybe i did not understand well, but in this documentation:
https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/loading-data/#toc-loading-cldr-data
seems that i need to know the locales i need BEFORE the deploy. am i wrong?
How can i do? Any suggestions?
Thanks,
Benedetta

I use next simple code for creating excel for export.
<kendo-excelexport #export [data]="data" [fileName]="fileName">
<ng-container *ngFor="let column of columns">
<kendo-excelexport-column [field]="column.datasource" [locked]="column.locked" [hidden]="column.hidden" [title]="column.title" [width]="column.width">
</kendo-excelexport-column>
</ng-container>
</kendo-excelexport>

Hello,
We have a Kendo NumericTextBox in an Angular App that is going to be used on an Android phone. In standard HTML input elements it is possible to set the attribute "inputmode" to "numeric" for the virtual keyboard on mobile devices to be displayed numerical. For the app, we would need this behavior for the Kendo NumericTextBox component too. So far, I did not find a possibility to achieve this. Is there an existing possibility or a workaround (except for manually adding the attribute via querySelector)?
I am using angularjs and in 1 of the components I have my kendo grid <sales-kendo-grid-component>
I am trying to reuse that component in my <other-sales-component> where I have stored data $scope.otherSales that I want to populate kendo grid with.
// other sales component
<div class="container">
<h1>Sales from other sources</h1>
<sales-kendo-grid-component></sales-kendo-grid-component>
</div>
How do I bind my $scope.otherSales to populate grid that's coming from <sales-kendo-grid-component>

Hello there,
have no idea to trigger the change event of dropdownlist
I need to set other inputs of my form ,if the code has a specific value, at the onchange event
My html:
<div class="row"> <div class="col-md-6"> <mat-label id="title-t" class="required"></mat-label> <kendo-dropdownlist id="tID" [data]="dataSourceList" [textField]="'name'" [valueField]="'code'" formControlName="tList" (valueChange)="onChangeList($event)"> </kendo-dropdownlist> </div></div>t;My ts:
public onChangeList(e){var t_code= e.code; console.log(t_code);}i want call event change in another function, something like this:
//tID.kendoDropDownList.change();
thanks,
Federico
right now we can see node index values we can get as sleeted values instead of this i need to get below
lets say we have unique ID value for each node items then we select the items on tree I need to get that unique ID value as selected values
how can I achieve this ?

Hello,
Having asked this question about how to set-min-width-for-columns, I wan to know is there any way to set max width fro columns in grid. As explained in that question, "when all column widths are explicitly set, and the cumulative column width is less than the available Grid width - the remaining width is distributed evenly between all columns"; however, in that case, I don't want some columns become wider than a certain point. For example, a check box column.
Is there any solution to prevent that?
Thanks,
Mojtaba
