I need access to Sketch support files containing the existing UI elements for Kendo for Angular so that I can create comps for my design. Ideally this would be a collection of sketch symbols that match the current Kendo UI design.
There appear to be no decent solutions for PDF viewing in Angular in handling viewing of downloaded PDF files that works intelligently and consistently across all desktop and mobile browsers, and supports navigation, saving, and printing. 1. The Angular Kendo Report Viewer is limited to Telerik reports generated using the Telerik Report web infrastructure and doesn't handle PDFs from other sources. 2. There is an open source Angular viewer, that provides reasonable viewing and navigation, but doesn't support save to file. or print. https://github.com/VadimDez/ng2-pdf-viewer 3. Syncfusion have a very nice Angular PDF viewer, but requires buying there whole Angular suite. https://help.syncfusion.com/angular/pdfviewer/getting-started A Kendo Angular PDF Viewer Component
Is the Map component included in this or (if it's not) when will it be added?
Modeled after the Kendo UI widget counterpart: http://www.telerik.com/kendo-ui/pivotgrid
For Angular Kendo Scheduler, if the Work week view is selected (default Mon-Fri), and Sunday is selected on the mini calendar to select the date to display - the previous week will be displayed. This is confusing, as simply toggling to Week view will then display the different, current week.
https://www.telerik.com/kendo-angular-ui/components/scheduler/views/day-week/
Expected behaviour: current week on mini calendar corresponds to the current week displayed regardless of whether full week or work week view is selected
Actual behaviour: selecting any day up until the desired "work week's start" (even if it's customized to start on e.g. Tuesday - and selecting Monday) will show previous week; switching then to full week view switches the week displayed to the one selected on mini calendar
------
Curiously, this does not happen for Kendo scheduler for JQuery (https://demos.telerik.com/kendo-ui/scheduler/index):
Please provide a mechanic for dynamic messages translations and/or more seamless integration with established third-party libraries like ngx-translate.
Currently the only available option is using a customized messages service, but this approach has multiple shortcomings
- all messages for all locales need to be recreated one by one in the service
- is not integrated with third-party libraries used to translate the rest of the application
A detailed discussion regarding the necessity of similar enhancement is available in the following GitHub thread:
https://github.com/telerik/kendo-angular/issues/362
P.S.: A possible workaround available for integration with ngx-translate involve adding the desired Kendo messages in the JSON files containing all translations for each supported language, and using the custom messages service to obtain and return the ngx service translation. Recreating the page each time the JSON data for the respective language is loaded is necessary to ensure that the correct messages will be available and used in the Kendo components.
The following example demonstrates a sample implementation of this approach:
https://stackblitz.com/edit/angular-kzirzx?file=src%2Fapp%2Fapp.component.ts
ANCHOR`, styles: [` .content { padding: 30px; color: #787878; background-color: #fcf7f8; border: 1px solid rgba(0,0,0,.05); } .anchor { width: 80px; height: 40px; cursor: pointer; position: relative; } .example { position: absolute; } `] }) export class AppComponent { private collision: Collision = { horizontal: 'flip', vertical: 'fit' }; /* Move the 'example' to the bottom to see the collision behavior */ private exampleTop = 400; private toggleText = 'Show'; private show = false; public onToggle(): void { this.show = !this.show; } } " class="demo-file-sc-s3r0g1-1 jgyKPC" data-language="ts" style="box-sizing:border-box;position:relative;overflow:auto;margin-top:0px;margin-bottom:0px;padding:1rem;background:rgb(248, 248, 248);border:0px;min-height:3rem;line-height:1.5;white-space:pre-wrap;color:#1f1f1f;">
Toggle Popup ` }) export class AppComponent { private show = true; } " class="demo-file-sc-s3r0g1-1 jgyKPC" data-language="ts" style="box-sizing:border-box;position:relative;overflow:auto;margin-top:0px;margin-bottom:0px;padding:1rem;background:rgb(248, 248, 248);border:0px;min-height:3rem;line-height:1.5;white-space:pre-wrap;color:#1f1f1f;"><button #anchor kendoButton (click)="show = !show">Toggle Popup</button> <kendo-popup [anchor]="anchor" *ngIf="show"> <div style="padding: 30px; background-color: #fcf7f8">Popup content.</div> </kendo-popup>
Directly referencing anchor like that will not work on any new Angular project - it will fail template type checks.
Type HTMLButtonElement is not assignable to type ElementRef
By default, the reference is to the component and not to the ElementRef.
Without a custom directive, this would have to use
@ViewChild("anchor", { read: ElementRef }) popupButtonEl: ElementRef;
Add selectOnFocus option for AutoComplete, ComboBox and MultiColumnComboBox.
The same is available for the TextBox component:
https://www.telerik.com/kendo-angular-ui/components/inputs/api/TextBoxComponent/#toc-selectonfocus
Re https://github.com/telerik/kendo-angular/issues/3649
The FilterableComponent has been removed from the dropdowns public API.
This is important to us as it allows us to create a directive that targets all the filterable components, similar to FilterDirective.
Can this be made public?
const horizontalAlign = this.direction === "rtl" ? "right" : "left";
const anchorPosition = <Align>{ horizontal: horizontalAlign, vertical: "bottom" };
const popupPosition = <Align>{ horizontal: horizontalAlign, vertical: "top" };
this.popupRef = this.popupService.open({
anchor: this.activeColor,
animate: this.popupSettings.animate,
appendTo: this.popupSettings.appendTo,
popupAlign: popupPosition,
anchorAlign: anchorPosition,
popupClass: 'k-colorpicker-popup',
content: this.popupTemplate,
positionMode: 'absolute'
});
Allow using current switch in a trivalent state (i.e. : true,false,undefined)
Add listbox component modeled from kendo ui jquery. http://demos.telerik.com/kendo-ui/listbox/angular
Would really like a Kendo UI version of the Chip Input like the one from Angular Material https://material.angular.io/components/chips/overview#chip-input
I was surprised looking through all the components that something like this didn't already exist
https://stackblitz.com/edit/angular-oc4d4c-ss8dyk?file=app/app.component.ts
Please introduce an option to perform accent-insensitive search using the Grid built-in string filtering.
If a user attempts to have a Kendo Grid column filter match Pare, ideally it should find Paré (with the accented é).
A similar FR is already available for the DropDownList:
https://feedback.telerik.com/kendo-angular-ui/1503741-filtering-should-support-accent-insensitive-search
Hi
It would be great if KendoGrid export to Excel and PDF like excelExport, saveAsExcel, saveAsPDF etc should had options to include all records of the grid and to apply the persistent filters, grouping, sorting etc
Something like:
<kendo-grid-excel fileName="test.xlsx" filteredData="true" allRows="true">
</kendo-grid-excel>
filteredData="true"
Exports exactly what the user has filtered, sorted, grouped, etc. and sees in the view
allRows="true"
Ignores the paging and includes all the data/rows
Currently toODataString constructs the entire query string used to make a request. When API endpoints are automatically generated (using swagger/OpenAPI for example), this makes toODataString less helpful. I would like a function that exposes the individual properties generated by toODataString
For example, toODataString currently produces something like
'$skip=0&$top=20&$orderby=quantity&$filter=date ge 2020-01-01T00:00:00.000Z'
I'd like something like toODataObject that produces something like
{$skip: 0, $top: 20, $orderby: 'quantity', $filter: 'date ge 2020-01-01T00:00:00.000Z'}
so that I could pass individual properties as parameters to generated API functions.
Thanks.
The nodeViews feature of proseMirror can't be used if not exposed as an input as it should be set in construction of the EditorView which is done internally the component.
We would like to supply it as an input to your component