Need More Info
Last Updated: 29 Jan 2025 10:53 by ADMIN
Dmytro
Created on: 02 Mar 2022 15:04
Category: Kendo UI for jQuery
Type: Feature Request
1
Modify k-animation-container behaviour

Requesting a modification to any component that uses k-animation-container.

Some components have this capability:

popup: {
    appendTo: $("SOME ID")
}

This gives us the ability to modify CSS for a single/particular popup. Please add this ability to all relevant components.

Or any other method to modify the styling of a particular dropdown. In some cases, there's an ID that's added but is removed for some reason when adding a certain configuration.

3 comments
ADMIN
Nikolay
Posted on: 29 Jan 2025 10:53

Hello Stacey,

When using the Kendo components with Bootstrap, Bootstrap modal dialogs prevent access to Kendo UI popups, which are opened by components placed inside the modal dialog. In such cases, use non-modal Bootstrap dialogs or modal Kendo UI Windows.

One option to resolve this is using the Kendo Window or Kendo Dialog components. The other is to prevent the focus of the bootstrap modal. We have a knowledgebase article demonstrating how to achieve this when using Bootstrap 3 and Bootstrap 4:

$('#testmodal').on('shown.bs.modal', function() {
          $(document).off('focusin.modal');
    });

For Bootstrap 5 the option I can suggest is to disable focus for the modal via the data-bs-focus="false" attribute or

 $('#testmodal').on('shown.bs.modal', function() {
          $(document).off('focusin.bs.modal');
    });

Regards,
Nikolay
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Stacey
Posted on: 22 Jan 2025 17:59

I can't speak for the origiinal requestors use case, but I'm running into this issue while trying to use the editor in a bootstrap modal.

 

The forecolor and backColor popups won't maintain focus

ADMIN
Neli
Posted on: 09 Mar 2022 10:11

Hello Dmytro,

Could you please provide more details about the scenario and the requirements? I will appreciate it if you could specify the widgets to which you need the popup.appendTo option to be included. Currently popup.appendTo option is available for the input editors such as - DropDownList, ComboBox, MultiSelect, etc. Before approving the request it will be helpful to have more details about the exact requirements and the component which you think needs to be extended. 

Regards,
Neli
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.