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

Displaying Window widget screws up my page's design

1 Answer 92 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
louis
Top achievements
Rank 1
louis asked on 10 Nov 2012, 05:14 PM
I have attached 3 images,

home.png is how my bootstrap-themed website looks like

I added this line of code in my page, right at the bottom

@(Html.Kendo().Window()
.Name("window")
.Title("test")
.Content("loading...")
    .LoadContentFrom("Login", "Authentication")
    .Modal(true)
    .Draggable()        
)

modal1.png is how the site looks like with the modal window

after.png is how the site looks like after I've closed the modal window

I'd like to know what is causing the design of my site to mess up?

When I looked in the page source of the code, this is causing the page to render incorrectly

<div id="window"></div><script>
jQuery(function(){jQuery("#window").kendoWindow({"modal":true,"iframe":false,"draggable":true,"title":"test","resizable":false,"content":"/login","actions":["Close"]});});
</script>

I tried removing kendoui's css from my layout page, but the result is the same.


1 Answer, 1 is accepted

Sort by
0
louis
Top achievements
Rank 1
answered on 11 Nov 2012, 07:26 AM
It's ok, the issue has been resolved. It's the stylesheets in my modal popup that is causing the problem
Tags
General Discussions
Asked by
louis
Top achievements
Rank 1
Answers by
louis
Top achievements
Rank 1
Share this question
or