Hello,
In our gantt component we need to add a marker on a specific date. (Our "Today" is not the real current day but a specific date)
There is an example for jquery version : https://docs.telerik.com/kendo-ui/knowledge-base/gantt-custom-time-marker
I understand that currentTimeMarker is meant to be used on the current time.. But an input to override and force another date could be useful.
Or maybe be able to add others TimeMarkers with a date as Input should not be difficult to implement as all the code should be almost the same.
Regards
Add functionality to the Java Spring Boot sample application to support server-side data operations, such as sorting, filtering, and pagination. Currently, the demo uses the process method to do the operations on the client.
https://github.com/telerik/kendo-angular/tree/master/examples-standalone/kendoangular-java-integration
Please allow setting the pager type to "Select" so that the Select element, currently only visible in responsive numeric pagers when there is not enough space for rendering the numeric buttons, can be displayed as a result of developer configuration instead.
Also, provide an option for displaying the numeric input element instead of the Select element when the pager responsive behavior kicks in.
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
TimeSelectorComponent
Tab Key: When you press the TAB key, the editor loses control of the focus. It is intended to give tab space rather than leave editor control. The indent space actually differs greatly from the tab space.
When adding a filter to a grid, there is no way to define "case insensitivity" for the oData filter query.
There is a property in the Data Query library (toLower) but it seems only to work for the value and not accessible from grid.
This Feature Request is to have the ability to do case insensitive queries via the query string and not in the API.
Hi,
The condition is that we need a homepage with multiple dynamic tabs. Only one component is active at any given time in this feature. However, if we want to view the data from two or more tabs simultaneously, we can drag and position them next to each other, similar to how we see tabs in Chrome and other browsers. This functionality is controlled by docking managers.
Thank you in advance for your consideration.
Implement a MediaPlayer component like the jQuery one:
Typing a decimal number in a grid filter menu input for number type removes dot sometimes.
Can be reproduced in this Grid:
https://www.telerik.com/kendo-angular-ui/components/grid/filtering/filter-menu/
Currently it is not possible to touch-scroll the locked section of the Grid on mobile devices - this is a known limitation:
https://www.telerik.com/kendo-angular-ui/components/grid/columns/locked/#toc-known-limitations
Please provide the opportunity for touch-scrolling the locked section of Grid and TreeList similar to the one available on other devices via the mousewheel.
Hi team,
It will be a good addition to the library to have a MultiColumnDropDownList component similar to the already existing MultiColumnComboBox.
Thank you.
Currently the Filtering functionality of the Kendo UI for Angular TreeView is not compatible with the built-in Drag'n'Drop.
Please make it possible to use both directives simultaneously.
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.
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?
Currently, the Button component supports appearance options such as size, fillMode, and rounded.
This request is about a way to set those appearance options globally for the entire app, in a single location, so that the user does not have to pass all of these settings every time they use a button.
I know this could be achieved by wrapping the Button component in another component, but that may lead to an unnecessary performance hit.
Another option would be to use the ThemeBuilder and set some variables, but that would not behave in the exact same way as the appearance options - for example, it is not so dynamic.
The TextBox component allows us to specify a template for the prefix and suffix areas by applying the TextBoxPrefixTemplate and TextBoxSufffixTemplate directives to an ng-template.
I would also like to able to specify a template for the actual input area itself.
My use case for this is that I have a directive that I use within my application that I would normally apply to the <input> tag to ensure some custom processing is undertaken during user input. With the current TextBox component I am unable to do this.
Additionally I would like to specify the autocomplete attribute for the <input> tag to alow the browser to autocomplete things such as shipping-address etc. or even to disable the browser autocomplete completely by setting this to "off". Again this is not possible with the current TextBox but would be easily achievable if I could specify the template for the input area.
If this was implemented as requested I would expect my angular HTML to look something like:
<kendo-textbox>
<ng-template kendoTextBoxPrefixTemplate>
<button kendoButton look="clear" icon="image"></button>
</ng-template>
<ng-template kendoTextBoxInputTemplate>
<input myDirective [autocomplete]="myValue" />
</ng-template>
<ng-template kendoTextBoxSuffixTemplate>
<kendo-textbox-separator></kendo-textbox-separator>
<button kendoButton fillMode="clear" icon="calendar"></button>
<kendo-icon name="bell"></kendo-icon>
</ng-template>
</kendo-textbox>