Unplanned
Last Updated: 07 Apr 2021 09:51 by ADMIN
Created by: Al
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
Please consider adding the ability to to change the default editor when assigning resources to a task to be whole numbers for some resources, currently the buitlin number editor increments/decrements only 0.01 at a time
Unplanned
Last Updated: 12 Apr 2021 09:46 by ADMIN

On one hand, kendo.mobile widgets have not progressed in several years.

On the other hand, some "mobile" controls like Bottom Navigation and Floating Action have entered the realm of kendo.ui, and an Action Sheet is in the roadmap.

Some of us still develop/maintain hybrid apps. It has become necessary to (i) clarify the roadmap and (ii) get some new best practices (doc and samples) for developing hybrid apps with Kendo UI:

  1. should we discard all kendo.mobile.ui widgets and replace them with their equivalent kendo.ui widget?
  2. how to replace certain widgets like kendo.mobile.ui.scroller which have no equivalent for kinetic scrolling.

 

Unplanned
Last Updated: 30 Mar 2021 15:37 by ADMIN
Created by: OUSSAMA
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi Kendo Team ,

I noticed something illogical  in MajorTimeHeaderTemplate , I did console.log on date that used in template and it prints => Fri Feb 01 1980 00:00:00 GMT+0000 (UTC)

it doesnt't give the current dateTime in the MajorTimeHeader

I will include images for that

 

Dojo exemple => https://dojo.telerik.com/iqakAKog

Duplicated
Last Updated: 12 Apr 2021 09:47 by ADMIN

On one hand, kidoju.mobile has not progressed in several years.

On the other hand, some "mobile" controls like Bottom Navigation and Floating Action have entered the realm of kendo.ui, and an Action Sheet is in the roadmap.

Some of us still develop/maintain hybrid apps. It has become necessary to (i) clarify the roadmap and (ii) get some new best practices (doc and samples) for developing hybrid apps with Kendo UI (kinetic scrolling via mobile scroller, ...).

 

Declined
Last Updated: 08 Apr 2021 11:05 by ADMIN

Hello ,

I've been struggling to fix a problem  , but it seems it's a bug from Kendo

the scenario is , when I had two events for same resources (I made a vertical grouping for ressources) then I moved on of the events to another slot it moved but the slots misaligned and the same thing when I remove an event

I will include a screenShot to see that

Unplanned
Last Updated: 23 Mar 2021 07:52 by ADMIN
Created by: Jack
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
2

kendo.UserEvents is a very import object across Kendo UI a properly using it is key to the development of custom widgets.

It need to be properly documented for the development community to use.

  • When to use it?
  • When not to use it?
  • Various scenarios and examples.
Unplanned
Last Updated: 05 Mar 2021 13:26 by ADMIN
Created by: Lou
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

Hi,

  1. It would be desirable if the properties described by “,” and “.” were renamed so as to be typescript compatible so that if access to them was required, it could be done via eg:
myCulture.numberFormat.groupThousandsSeparator
 

And not

myCulture.numberFormat[ “,” ]

Refer to the properties as shown here in the kendo.all.d.ts file:


declare namespace kendo {
    function culture(): {
        name: string;
        calendar: {
            AM: string[];
            PM: string[];
            "/": string;
            ":": string;
            days: {
                names: string[];
                namesAbbr: string[];
                namesShort: string[];
            };
            months: {
                names: string[];
                namesAbbr: string[];
            };
            patterns: {
                D: string;
                F: string;
                G: string;
                M: string;
                T: string;
                Y: string;
                d: string;
                g: string;
                m: string;
                s: string;
                t: string;
                u: string;
                y: string;
            };
            firstDay: number;
            twoDigitYearMax: number;
        };
        calendars: {
            standard: {
                AM: string[];
                PM: string[];
                "/": string;
                ":": string;
                days: {
                    names: string[];
                    namesAbbr: string[];
                    namesShort: string[];
                };
                months: {
                    names: string[];
                    namesAbbr: string[];
                };
                patterns: {
                    D: string;
                    F: string;
                    G: string;
                    M: string;
                    T: string;
                    Y: string;
                    d: string;
                    g: string;
                    m: string;
                    s: string;
                    t: string;
                    u: string;
                    y: string;
                };
                firstDay: string;
                twoDigitYearMax: number;
            };
        };
        numberFormat: {
            currency: {
                decimals: number;
                ",": string;
                ".": string;
                groupSize: number[];
                pattern: string[];
                symbol: string;
            };
            decimals: number;
            ",": string;
            ".": string;
            groupSize: number[];
            pattern: string[];
            percent: {
                decimals: number;
                ",": string;
                ".": string;
                groupSize: number[];
                pattern: string[];
                symbol: string;
            };
        };
    };

 
Unplanned
Last Updated: 05 Mar 2021 13:22 by ADMIN

Hi,

We are using kendo (version 2020.2.617) from typescript. The current of the culture() function definition in kendo.all.d.ts looks like this:


declare namespace kendo {
    function culture(): {
        name: string;
        calendar: {
            AM: string[];
            PM: string[];
            "/": string;
            ":": string;
            days: {
                names: string[];
                namesAbbr: string[];
                namesShort: string[];
            };
            months: {
                names: string[];
                namesAbbr: string[];
            };
            patterns: {
                D: string;
                F: string;
                G: string;
                M: string;
                T: string;
                Y: string;
                d: string;
                g: string;
                m: string;
                s: string;
                t: string;
                u: string;
                y: string;
            };
            firstDay: number;
            twoDigitYearMax: number;
        };
        calendars: {
            standard: {
                AM: string[];
                PM: string[];
                "/": string;
                ":": string;
                days: {
                    names: string[];
                    namesAbbr: string[];
                    namesShort: string[];
                };
                months: {
                    names: string[];
                    namesAbbr: string[];
                };
                patterns: {
                    D: string;
                    F: string;
                    G: string;
                    M: string;
                    T: string;
                    Y: string;
                    d: string;
                    g: string;
                    m: string;
                    s: string;
                    t: string;
                    u: string;
                    y: string;
                };
                firstDay: string;
                twoDigitYearMax: number;
            };
        };
        numberFormat: {
            currency: {
                decimals: number;
                ",": string;
                ".": string;
                groupSize: number[];
                pattern: string[];
                symbol: string;
            };
            decimals: number;
            ",": string;
            ".": string;
            groupSize: number[];
            pattern: string[];
            percent: {
                decimals: number;
                ",": string;
                ".": string;
                groupSize: number[];
                pattern: string[];
                symbol: string;
            };
        };
    };

It would be desirable if this was declared as an interface so client code could use the interface type and assign the culture to a typed variable, eg:

let currentCulture: IKendoCulture = kendo.culture( );

Thanks and regards,

Lou

Completed
Last Updated: 09 May 2022 16:02 by ADMIN
Release 2022.R2
Created by: Angel
Comments: 2
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi guys,

I'm using the following dojo: https://dojo.telerik.com/UXUSUvEC

Here are the steps to reproduce:

1. Add the following to the HTML view of the editor: <span>Testing</span>
2. Switch back to the WYSIWYG mode
3. Hit enter twice to add two new line
4. Enter some text (e.g. "Text from WYSIWYG view")
5. Hit enter to add a new line
6. Switch back to HTML view
7. Notice how it keeps replicating the spans

HTML view will show the following

<p><span>Test</span></p>
<p><span>&nbsp;</span></p>
<p><span>Test from WYSIWYG view</span></p>
<p><span>&nbsp;</span></p>

I've discussed this with Yanko Dzhemerenov before submitting.

Unplanned
Last Updated: 25 Feb 2021 16:16 by ADMIN

This is somewhat related to the existing request for this feature with Tooltips, but applies more generally to any widgets with popup behavior, such as DropDownList and AutoComplete. Auto-closing these widgets upon scrolling is an extremely annoying behavior, and I've even had end users comment on it in demos. The currently suggested workaround is hacky, particularly difficult to implement with AngularJS, and as far as I know, only works with DropDownList and AutoComplete. This behavior needs first-class support as a configurable option. This could be done a couple of ways.

1. Make it a configuration option.

$("#products").kendoAutoComplete({ closeOnScroll: false });

2. Or, just add the browser-level event name to Kendo UI's event object in the various widget event handler functions, such as close.

close: function (e) {
  // won't work because "e" doesn't have a "type" property like normal JavaScript event objects do
  if (e.type === "wheel") {
    e.preventDefault();
  }
}

 

I would actually prefer the second option, as it would open up a bunch of options for developers in those event handlers, including addressing this particular auto-closing issue.

Declined
Last Updated: 15 Feb 2021 09:57 by ADMIN
Created by: Saby
Comments: 3
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi Neli, I have an even bigger problem. Could you tell me how to configure the "enter" to be a "<br>" and not a "<p>". I am having a lot of problems. In the editor I press enter but since a <p> is inserted, my report shows it all together, without line breaks. I need an urgent answer please.

Attached images of the insertion problem of <p>

Thanks

Unplanned
Last Updated: 12 Feb 2021 10:42 by ADMIN
Created by: Jon
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
2

The console component under demos is nice and I implemented still in my application with wodnload the console.js but I think its nice if you implement this as a component with APIs and features

 

for example filter and color for events or for a signalr or field, maybe with (X) delete all button and direction.

 

Thank you

Best regards from zurich

Murat

Completed
Last Updated: 18 Feb 2021 16:02 by ADMIN
Release 2021.R1.SP.next
In the datepicker popup with the component type modern the "Today" text link is enabled even if today's date is disabled.
Unplanned
Last Updated: 27 May 2021 10:50 by ADMIN
Created by: Andrew
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0
A new component for viewing and editing code or other plain-text configurations with syntax highlighting, automatic indentation, go to/peek definitions and line numbering would be quite useful for any web-based document management system, help desk or remote management.
Unplanned
Last Updated: 03 Feb 2021 06:20 by ADMIN

Hi,

I've notice an issue with Scheduler: the height for group slot is not correct calculated and items goes down to the next group slot.

Scheduler :

   - group vertical after a field

   - type of scheduler: "timelineWeek" or "timelineMonth"

   - items of the group have same start date and their number are bigger then 20.  

kendo ui version: 2020.1.219. Same issue with 2021.1.119

----------------------------------------------------------------------------------------------------------------------

I've created a dojo as example:  https://dojo.telerik.com/EHeNigIQ  .   Also, you can see the issue into the picture bellow.

You can modify the variable  "rows = 30;"  and you will see more items that goes wrong into the other group slot.

 

Unplanned
Last Updated: 29 Jun 2021 11:21 by ADMIN

This feature request concerns all Kendo widgets that have a loading indicator built in such as Kendo MultiSelect. Currently there are no aria attributes indicating progress, so users are not made aware that something is loading by the screen readers. 

One possible approach is to apply aria-busy attribute:

https://www.w3.org/TR/wai-aria-1.0/states_and_properties#aria-busy 

This is also suggested as a solution to implement for the standalone Loader component:

https://docs.telerik.com/kendo-ui/controls/interactivity/loader/accessibility/overview#wai-aria 

 

 

Unplanned
Last Updated: 25 Feb 2021 13:08 by ADMIN
I need to change the 'expressionPreview' value when using the filter to the description of the item in the dropdown and not the value. In the example below the 'expressionPreview' says '(Category Is equal to '3')' but I need it to say (Category Is equal to 'Confections').
Unplanned
Last Updated: 11 Jan 2021 12:54 by ADMIN

When unformatted multi-line content is pasted in an existing paragraph inside the Kendo Editor, the paragraph is removed and the pasted content is inserted in the body of the Editor.

Steps to reproduce:

  • Open: https://dojo.telerik.com/osANirag/8
  • Type in the content editable: "text row 1", hit ENTER, type "text row 2"
  • Copy the content from the content editable.
  • Paste the content in the first paragraph in the Kendo Editor

Result:

The pasted content replases the paragraph.

Expected Result:

The pasted content should be inserted in the paragraph.

Declined
Last Updated: 30 Dec 2020 13:25 by ADMIN
Created by: Holyhehe
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
0

Hi all,

I would like to request a feature by enabling sorting of grouped headers only by the sum of values in a specified column.

Thank you.

Declined
Last Updated: 10 Dec 2020 10:20 by ADMIN