Questions tagged [kendo-window]

The Kendo Window is a Kendo widget that displays content in a modal or non-modal HTML window.

A Window displays content in a modal or non-modal HTML window. By default, a Window can be moved, resized, and closed. Its content can also be defined with either as static HTML or loaded dynamically via AJAX.

A Window can be initialized from virtually any DOM element. During initialization, the targeted content will automatically be wrapped in the div element of the Window.


Related tags

167 questions
10
votes
1 answer

How do I set the content of a Kendo window?

I have this window: @(Html.Kendo().Window() .Name("errorWindow") .Title("") .Content(@ //Put text here ) .Draggable() //Enable dragging of the window .Resizable() //Enable resizing of the window …
Greg Gum
  • 25,941
  • 27
  • 127
  • 194
9
votes
1 answer

Can you add a modal background to a Kendo window?

Using kendo ui, and using the window UI WIDGET, http://demos.kendoui.com/web/window/index.html Is it possible to add a modal background in light grey color like you can in Jquery ui dialog http://jqueryui.com/dialog/#modal ? Is it possible to make…
Hello-World
  • 7,619
  • 22
  • 71
  • 144
8
votes
3 answers

How to close KendoUI modal window when click on overlay outside window?

I have Kendo UI modal window opened and I want to close it by clicking on overlay. How can I do that?
user1762608
  • 245
  • 1
  • 4
  • 8
6
votes
2 answers

Kendo UI window - prevent loading previous content

I am using Kendo Window on my MVC project. This is how I initiate the object from the View @(Html.Kendo().Window() .Name("window") .Content("loading page..") .Iframe(true) .Draggable() .Visible(false) .Height(200) …
evilom
  • 555
  • 6
  • 18
5
votes
2 answers

Styling Kendo Window's content with Bootstrap

I have a generic Kendo Window that I call for different partial views. I can't style contents using bootstrap, as it causes different layouts in different browsers and elements are always cluttered. This is a sample:
Akbari
  • 2,239
  • 6
  • 36
  • 78
5
votes
2 answers

Kendo UI Window Close Event: prevent window close

We are creating a warning message for an app with various forms. In simple pages it's very easy, we just detect changes in form elements and if a user wants to unload the page we show them the warning message. But... we also have some forms in Kendo…
Tebo
  • 176
  • 2
  • 3
  • 13
4
votes
1 answer

Passing value to a kendoWindow template

Given the below template and function, how can I pass the function argument contentText to display in the template #password-validation at the placeholder ###? Template