It'll be awesome if you can have required packages in the package.json file in StackBlitz based on sample. An example, If I'm looking at Kendo Menu sample code in StackBlitz I can just go to package.json and see all the required packages I need to work with Kendo Menu.
To change the topView or bottomView property I have to set the value as string. E.g. topView="month". To be typesave I like to use the CalendarViewEnum in my typescript code. When I bind the enum in the view, the enum-value is set. But unfortunately the enum value is a number and not a string. I must convert the enum value like: public getBottomView(): string { return CalendarViewEnum[this._bottomView]; } Live would be easier if string enums would be used.
Multiple date picker, single date pick, date range pick. Please add all functionality in angular date component.
We have a regular need for a non-grid scroller that scrolls over a list of items, virtualizing the instances of the item renderers. The grid does this of course, but it would be quite a hack to implement this for non-grid situations such as a list of cards or panels. Ideally this would work similarly to the grid and support infinite scrolling via the calculated dispatching of pagination events. Also would be great if it supported variable height item renderers.
I would like to have Captcha component in Angular similar to Telerik ASP.NET Captcha component.
Please add the ability to disable snapping to slots while dragging/resizing events in the Kendo Angular Scheduler. This would improve usability greatly.
This feature exists in the JQuery version with the "Snap events to slot boundaries" checkbox seen here: https://demos.telerik.com/kendo-ui/scheduler/move-resize
The check-box styles for the Kendo themes are beautiful, but they are still static in size. As anyone who has tried can assert, it is very difficult to scale and resize check-boxes, since they don't behave the same way as most other controls. It would be absolutely wonderful if the Kendo suite had a way to do this, such as ... ``` <form class="k-form"> <div class="k-form-field"> <input type="checkbox" id="ch1" class="k-checkbox" checked /> <label class="k-checkbox-label" for="ch1">Checkbox 1</label> <input type="checkbox" id="ch2" class="k-checkbox" checked disabled /> <label class="k-checkbox-label" for="ch2">Checkbox 2</label> <input type="checkbox" id="ch3" class="k-checkbox"> <label class="k-checkbox-label" for="ch3" [scale]="2">Checkbox 3</label> </div> </form> ```
Please add support to the @progress/kendo-angular-intl library for the following Norwegian locales: Norwegian, Nynorsk (Norway) Sami (Northern) (Norway) Sami (Southern) (Norway) Sami (Lule) (Norway)
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. EG: https://demos.telerik.com/kendo-ui/listview/editing
There is page includes 2 component: 1. DatePicker with placeHolder is 'placeHolder first value' 2. Button to handle event onChange when clicked. When the button is clicked, change the placeholder value to 'placeHolder second value' How to do that with Kendo UI for Angular 2+. ? Thank you. Contact via skype quanhungbang | email : quanhungbang@gmail.com
Range picker for numeric values
I wish there was a way to build dashboard layouts easily by end users from a selection of widgets (components) configured by developer You have something like that in Sortable but that does not work with components and the user is not able to set the layout - initially you can think about using the Splitter control (that is planned to release) and later perhaps make it more functional by incorporating collapsible panels.
Is it possible to add a duration input control in format HH. I´m not talking about a time picker, but a way to choose how much time will last doing something.
The value could be in minutes or hours (fractional minutes).
Here is a discussion on this topic on
https://stackoverflow.com/questions/17428387/hows-a-duration-picker-called-and-does-it-exist
Forms are what we use every day and if there's a form, we often have to validate the input and show the validation results to the user.
Problems:
Opportunity:
Feature request:
Example:
// global setup
validationService.configure({
showIf: 'touchedOrDirty',
messages: {
required: "This field is required',
customKey: 'This field needs ... ',
customKey2: errorMessageForCustomKey2Fn
});
// callback to generated error message for customKey2
function errorMessageForCustomKey2Fn(control: FormControl) => return `can include 'but is ... ' from form control`;
// HTML in component template
<input formControlName="myinput" ... />
<validation-errors forControlName="myinput"> // < should handle all globally registered errors without additional code.
<error key="keyOfValidatorOnlyUsedHere">Sorry, but you have to</error>
</validation-errors>
I think such a feature could massively reduce the work to setup forms.
Be able to turn off Keyboard Navigation for Kendo Component for Angular 4. (Not just for buttons) Sometimes, our app may certain key down registered for other events but Kendo's component's keyboard navigation can't be turned off easily and will take over our app's keydown. For now, we have to write wrapper for every component that we don't want keyboard navigation like this: http://plnkr.co/edit/yBAvnQ63yg9Y0REMcnRS?p=preview
I am trying to access the documentation for Kendo UI for Angular and I am getting a redirect error in the browser (Chrome and Firefox), specific to the Kendo Grid documentation for filtering: https://www.telerik.com/kendo-angular-ui/components/grid/data-operations/filtering/