Hi
I am using angular 13.
My page contains a button "New Application"
I press a button to open the window "Search for applicant"
the window is open , it contains another buttton with label "continue"
I press the "coninue" button to open the action sheet. the action sheet is open at the back and attached to the parent page not to the window.
here is the HTML
<kendo-window
title="Search For Applicant"
*ngIf="opened"
(close)="close()"
[minWidth]="800"
[width]="1200"
[height]="650"
>
<dhaman-entities></dhaman-entities>
<kendo-dialog-actions>
<button id="openActionSheetBttn" kendoButton (click)="Start()" themeColor="primary">
Continue..
</button>
</kendo-dialog-actions>
</kendo-window>
<kendo-actionsheet
*ngIf="openActionSheet"
(itemClick)="acOnItemClick()"
(overlayClick)="acOnOverlayClick()"
[title]="title"
[items]="items"
>
</kendo-actionsheet>
public openActionSheet = false;
public title = 'Select item';
public items: ActionSheetItem[] = [
{
title: 'Edit Item',
iconClass: 'k-icon k-i-edit',
},
{
title: 'Add to Favorites',
iconClass: 'k-icon k-i-heart',
},
];
.k-actionsheet-container {
width: 100%;
height: 100%;
z-index: 1;
}
.k-actionsheet-container > .k-overlay {
border-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
}