Hi,
In my .ts file I would like to use EditTemplateDirective; so, I put it there and Visual Studio imported it from "@progress/kendo-angular-grid/dist/es2015/editing/edit-template.directive". Although, Typescript compiler was happy with that, Kendo Grid was not working; it seemed Kendo Grid is using a different EditTemplateDirective. I changed the path for import to "@progress/kendo-angular-grid/dist/es/editing/edit-template.directive", and my guess was correct. Kendo Grid was happy with this import. However, Typescript compiler does keeps throwing compiler error for EditTemplateDirective, seems does not recognise that.
I noticed the same story is true for CommandColumnComponent. So, what is the problem there?
Thanks,
Mojaba
Hi,
I am having a large grid and I programmatically select a row of the grid.
But if the row is out of the viewport of the current view I would like to have the grid scroll down/up to the row, so the user can see the selected row automatically.
I've ssen thatthere is a demo for that in the jQuery-Version of the grid. But how do I accomplish tat in the angular grid?
Thanky for your help in advance.
Best regards
Manuel
I'm looking for a working example building a sample of Angular 7 project using a JSDO Service.
I have built a sample Service component and using it in Angular Grid using the HttpClient and then subscribing to the observable in the app component. But I'm needing to communicate with the back end using the JSDO for CRUD operations.
Please help.
Hello everyone,
I can't find a solution for my problem. I want to have a chart valueAxis where I can put in an array of numeric values like in category axis (categories? any[]).
In the attached image you can see what I mean. As info: I'm getting these Y-Axis values from backend and I have to show them. So it is not linear and not a log axis :(
Any ideas?
Greetings
Martin
The How To: Persist the State sample demonstrates how to persist columns settings when the grid's columns are configured in code using *ngFor. But how to restore columns settings when columns configuration is done in markup?
We need to define grid columns in markup, because we are using several column templates, e.g. pipes, filter menu, ...
Thanks
I have already submitted a support ticket for the said issue but I am hoping to have some help from the community in case you have a work around for this.
Timepicker component is not usable at all when there is a grid component on the same page. The issue can only be encountered in IE Browsers.
To reproduce the issue, open the stackblitz link below in IE. Try selecting timepicker values.
https://stackblitz.com/edit/angular-65hvyd?file=src%2Fapp%2Fapp.component.ts
Thanks in advance!
I need to display how much % used in my kendo-arcgauge chart. I dont want that to be displayed inside the guage. Can you let me know if we can do with mouse over event like bar chart like this below.
<kendo-chart-tooltip [shared]="true">
<ng-template kendoChartSharedTooltipTemplate>
<div>
50%
</div>
</ng-template>
</kendo-chart-tooltip>
From the Dialogs Overview page of KendoUI with Angular, the dialog package should contain DialogModule and WindowModule.
However, I got an error when trying to import DialogsModule:
ErrorTS2305(TS) Module '"C:/ProjectFiles/.../node_modules/@progress/kendo-angular-dialog/dist/es/main"' has no exported member 'DialogsModule'.Apps
The DialogModule is there but not the WindowModule, which is the component I want to use.
I just got the latest install with my local RxJS version 5.5.6:
npm install --save @progress/kendo-angular-dialog @progress/kendo-angular-buttons @progress/kendo-angular-l10n @angular/animations.
Is there another package I need to install? Thanks.