Unplanned
Last Updated: 30 May 2023 08:17 by ADMIN
Created by: Jaap
Comments: 0
Category: Popup
Type: Feature Request
1

The AdaptiveMode for components like DatePicker and DropdownList is a nice new feature.

Would be nice to have such an AdaptiveMode on the popup component and popupservice.

Unplanned
Last Updated: 19 Oct 2022 06:20 by Boris
Created by: Boris
Comments: 0
Category: Popup
Type: Feature Request
4

Hi,

It will be a good addition to the component if the developers have easy access to delay when closing the popup component (like the duration property available when opening)

Thank you for your consideration.

Completed
Last Updated: 03 May 2022 14:08 by ADMIN
Created by: Mauro
Comments: 2
Category: Popup
Type: Bug Report
1
        
ANCHOR
`, styles: [` .content { padding: 30px; color: #787878; background-color: #fcf7f8; border: 1px solid rgba(0,0,0,.05); } .anchor { width: 80px; height: 40px; cursor: pointer; position: relative; } .example { position: absolute; } `] }) export class AppComponent { private collision: Collision = { horizontal: 'flip', vertical: 'fit' }; /* Move the 'example' to the bottom to see the collision behavior */ private exampleTop = 400; private toggleText = 'Show'; private show = false; public onToggle(): void { this.show = !this.show; } } " class="demo-file-sc-s3r0g1-1 jgyKPC" data-language="ts" style="box-sizing:border-box;position:relative;overflow:auto;margin-top:0px;margin-bottom:0px;padding:1rem;background:rgb(248, 248, 248);border:0px;min-height:3rem;line-height:1.5;white-space:pre-wrap;color:#1f1f1f;">
Toggle Popup

        
    `
})
export class AppComponent {
    private show = true;
}
" class="demo-file-sc-s3r0g1-1 jgyKPC" data-language="ts" style="box-sizing:border-box;position:relative;overflow:auto;margin-top:0px;margin-bottom:0px;padding:1rem;background:rgb(248, 248, 248);border:0px;min-height:3rem;line-height:1.5;white-space:pre-wrap;color:#1f1f1f;">    <button #anchor kendoButton (click)="show = !show">Toggle Popup</button>
    <kendo-popup [anchor]="anchor" *ngIf="show">
      <div style="padding: 30px; background-color: #fcf7f8">Popup content.</div>
    </kendo-popup>

Directly referencing anchor like that will not work on any new Angular project - it will fail template type checks.
Type HTMLButtonElement is not assignable to type ElementRef 

By default, the reference is to the component and not to the ElementRef.
Without a custom directive, this would have to use 
@ViewChild("anchor", { read: ElementRef }) popupButtonEl: ElementRef;

Unplanned
Last Updated: 02 Aug 2021 09:28 by ADMIN
Created by: dana
Comments: 0
Category: Popup
Type: Feature Request
7
Currently the Popup "direction" property contains information about the flip direction of the Popup only when animations are active (animate = true). However when animate is "false", the direction is "none".

Please provide a way for the developer to check the flip direction regardless of whether animations are active.
Unplanned
Last Updated: 09 Jul 2021 04:37 by ADMIN
Created by: shahar
Comments: 0
Category: Popup
Type: Feature Request
4
Hi guys,
When can we expect RTL support for popup the component?
The popups are used in various places on the platform (such as grid filter operators) and RTL isn't really supported until the popup supports it itself.
Unplanned
Last Updated: 16 Jun 2021 15:09 by ADMIN
Created by: Sasan
Comments: 2
Category: Popup
Type: Feature Request
5
Please provide an option to be able to disable the animations of all Popup instances globally.