This is a migrated thread and some comments may be shown as answers.

Can I open window like Dialog?

2 Answers 125 Views
Window
This is a migrated thread and some comments may be shown as answers.
Vincent
Top achievements
Rank 1
Iron
Vincent asked on 23 May 2018, 03:40 PM
I want to open window like dialog. freezing the background page. Can I get it.

2 Answers, 1 is accepted

Sort by
0
Ivan Zhekov
Telerik team
answered on 23 May 2018, 03:51 PM
Hello.

You can customize the modal, resizable and draggable properties of the window to make it behave like modal:

<div id="my-window"></div>
<script>
$("#my-window").kendoWindow({
  modal: true,
  resizable: false,
  draggable: false
}).data("kendoWindow").center();


Here is a sample: https://dojo.telerik.com/@joneff/ukuZABoq.

Regards,
Ivan Zhekov
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Vincent
Top achievements
Rank 1
Iron
answered on 24 May 2018, 12:24 AM
It works!! Thank you very much.
Tags
Window
Asked by
Vincent
Top achievements
Rank 1
Iron
Answers by
Ivan Zhekov
Telerik team
Vincent
Top achievements
Rank 1
Iron
Share this question
or