Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been seeing one strange thing which I can't solve and it is related to the fact that in my site the drop down portion of the combo box and/or drop down list overlaps/hides the text entry. Is there anyone who faced the same issue and if yes how it was solved ?

<UPDATE>
Link of the repro page showing the overlapping can be found here kendotest.azurewebsites.com
</UPDATE>

Illustration of the problem in 3 pictures...

Here's how it looks on a KendoUI demo web site - proper behavior Proper behavior - from kendo ui web demo site

And here's the behavior on my site - faulty overlapping Combo box in collapsed state My Combo in expanded state

share|improve this question
Can you share a sample page - this is not an expected behavior and screenshot is not enough for a diagnose? – Bundyo Feb 7 at 6:00
Guys, I can't reproduce your problem without a sample page. – Bundyo Feb 7 at 15:52
@Bundyo, sorry for late response - I've made a dummy page reproducing the defect here: kendotest.azurewebsites.com. To reproduce it just start typing name of one of the items ie. "X-" – Nikola Malovic Feb 12 at 13:56

1 Answer

up vote 1 down vote accepted

I found an answer

Default MVC 4 template has in site.css next entry for body:

body
{
    background-color: #fff;
    border-top: solid 10px #000;
    color: #333;
    font-size: .85em;
    font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
}

enter code here

When I remove the border-top line the dropdown starts working as it should

share|improve this answer
Yes, seems the issue is caused by the completely different document.body metrics in the various browsers - we chose not to support margins and borders of the body at all or face unpredictable behavior. – Bundyo Feb 13 at 9:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.