Kendo UI for Angular Feedback
-
Add option to specify the axis values to label for charts using one or more value axes
Charts that use one or more value axis should expose the means to specify which values on that axis are labeled, instead of basing the labels on the min value of the axis and the major unit.
Ex, using the Angular syntax:
<kendo-chart-value-axis-item
min="0"
max="10"
[labelsAt]="[2.5, 4, 7]"
>yielding an axis like
----------|------|------------|------------
2.5 4 72 votes -
Responsive DateRangePicker
This component is AWESOME! One thing missing is it doesn't fit on mobile at all. It needs to break vertically on smaller devices.
3 votes -
Open dialogs with separate component and template
It would be nice if it was possible to open kendo dialogs with separate component and template like you do in angular material, see below.
https://material.angular.io/components/dialog/overview
let dialogRef = dialog.open(UserProfileComponent, {
height: '400px',
width: '600px',
});dialogRef.afterClosed().subscribe(result => {
console.log(`Dialog result: ${result}`); // Pizza!
});18 votes -
Copy data from excel to Kendo grid angular similar to kendo UI(Jquery)
We need feature like copy data from excel and paste it directly into the kendo grid for angular.
3 votes -
Introduce Loading / Error templates
Introduce support for Loading / Error templates for components. eg.:
<kendo-grid [success]="boolean" [loading]="boolean>
<div kendo-error-template>
We Cannot load your data
</div><div kendo-loading-template>
<!== some kind of spinner, or just text>
</div>
</kendo-grid>18 votes -
Responsive Menu component
It will be helpful if the menu component can be responsive similar to this example: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_responsive_navbar_dropdown
1 vote -
Automate filtering, sorting and paging capabilities
I find myself reusing similar/identical code in order to implement filtering, sorting and virtual paging. In almost all cases, I am simply applying the filters, sort and determining the records to select based on the page as shown in the API.
This code should be inbuilt into the kendo grid. If filterable is true, kendo should implement the filter change event and apply filters automatically; the users should not be forced to define what happens on filter change for every grid instance. Similarly, if sortable is true, the kendo grid should automatically implement default sort functionality.
The same would also…
3 votes -
We Want Grid MultiFitler Checkbox
Allow user to filter like excel and your Keno UI for jquery. Where user can filter record by applying checkbox check and search.
4 votes -
Add "Overflow" to Toolbar similar to the jquery version
The Toolbar was recently release with R2 2018. We were looking forward to this component but noted that the "Overflow" anchor property has not been implemented. This is the most compelling feature on the JQuery version. Can you revisit the toolbar code and add this feature?
3 votes -
toOdatastring and ignoreCase
Since the client side filtering honours ignoreCase and the toOdatastring not, we got a difference in behaviour, so i'd like to report this as a BUG!
With dropdowns I use: &$filter=contains(tolower(FieldName), tolower('" + searchString + "')) but for grid filtering a COLUMN BASED ignoreCase is a MUST!
6 votes -
Add clearSelection method on the grid
It way too complicated to clear the selection programmatically in the grid at the moment. Please add a clearSelection method on the grid instance.
3 votes -
TooltipDirective popupSettings
Can you add property popupSettings with appendTo?
Something similar is in kendo date picker:
https://www.telerik.com/kendo-angular-ui/components/dateinputs/api/PopupSettings/It could be placed here
https://www.telerik.com/kendo-angular-ui/components/tooltip/api/TooltipDirective/I placed this in Dialog category, but can you add category tooltip?
Best regards,
Paweł6 votes -
TreeView routing support
It would be useful if the TreeView can support the Angular Routing feature, for example allowing to set a RouterLink directive for each item of the tree.
1 vote -
Ability to set rowAttributes as well as rowClass for Grid
In the jQuery version of the Angular Grid, it was possible to add row templates to a grid which was useful because you could set attributes directly to the tr.
In my case, I have a scenario where I want to add a title attribute for tooltips for the whole row, not just individual cells.
I can provide a function for rowClasses, which is great, but it would be nice if there was a similar function I could use to add other attributes as well directly to the tr.
At the moment my work around is to add the title…
3 votes -
Allow Sortable to support Angular components as its items that can be dragged and re-ordered.
Currently, it is very difficult to get the Sortable to use Angular components as child items.
It would be great if it supported this.2 votes -
Multiple date picker, single date pick, date range pick. Please add all functionality in angular date component.
Multiple date picker, single date pick, date range pick. Please add all functionality in angular date component.
2 votes -
Card View
Hello Team,
I would like to request for Card View Just like List View in Kendo UI Jquery. So that, users can interchange between kendo grid and card view. Also, I would like to have all the features provided by grid.
1 vote -
Grid with selection and virtuall scrolling: 'select all' feature.
Suggestion: Make the 'select all' checkbox in the grid more intuitive for the user.
When we combine virtuall scrolling and selection via checkboxes for the kendo grid the 'select all' checkbox in the header will only select rows which are already visible / paged in.
This is of course because kendo does not yet now about the not yet paged in rows.
On the other side this behavior is quiet unintuive for the user.
The user does not know about page border and expects the select all checkbox to check all rows.The desired functionality could be realized by internally…
23 votes -
calendar navigation using arrow buttons
The new calendar components is great, but it's missing a significant functionality, which has been available for a long time with the jquery calendar and users love.
There are no arrows for navigating the calendar. The arrow buttons are much easier than keyboard page-up/page-down and the navigation bar.
I realize there is very little space next to the Today button, but many users really need it.26 votes -
Overlay / Waiting Screen
Create a Overlay Component for Waiting Screens when you load Data from Backend Services, ....
- With Flexible Loading Icon
- Perhaps as ngRx Extension,
- Inceting a service where you can just call ShowOverlay or HideOverlay, ...22 votes
- Don't see your idea?