Hi Team,
I am able to download Kendo UI components for angular without logging to Kendo account and it works as expected
I have paid a subscription and even after logging I get the same repository to download the components.
My question is what is the difference between paid and unpaid packages.
Since I have already downloaded the packages without logging in, how should I use it?
Let me know the process for the users who have a paid subscription.
Any plan or timeline when the components will be compatible with Angular 7?
Thanks,
Bryian Tan
Hello,
similar to a thread I opened last week regarding the NumericTextBox, there is, as far as I can see, at the moment no support for the numeric virtual keyboard to be shown on mobile devices. As stated in the other thread, this could be achieved by adding the HTML attribute inputmode="numeric" to the input element. After posting the thread, an issue has been created to add this to the NumericTextBox. Therefore, I wanted to ask if this will also be added for the DatePicker?
Thank you in advance,
Iris



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>
