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

DropDown bug in Window

2 Answers 46 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Rodrigo Longo
Top achievements
Rank 1
Rodrigo Longo asked on 01 Nov 2010, 07:21 PM
Hi, when I include a dropdown inside a Window and the window is Scrolable, the dropdown component seems to get fixed in their position and don't scroll. This is my code : (I also attached an image)

<% Html.Telerik().Window()
 .Name("windowEditView")
 .Title("Producto")
 .Content(() =>
     {
 %>
      <% Html.Telerik().DropDownList()
           .Name("test")
           .Render(); %>
      <br />
      <%=Html.TextBox("txtTest") %>
      <br />
      <br />
      <br />
      <br />
      <br />
      <br />
      <br />
      <br />
      <br />
      <br />
      <br /><%
     })
 .Draggable(false)
 .Modal(true)
 .Width(200)
 .Height(150)
 .Scrollable(true)
 .Visible(false)
 //.ClientEvents(events => events.OnOpen("OnOpenWindow"))
 .Render();                        
 %>

2 Answers, 1 is accepted

Sort by
0
Accepted
Alex Gyoshev
Telerik team
answered on 02 Nov 2010, 12:12 PM
Hello Rodrigo,

Thank you for reporting this problem. You can work-around it by adding the following CSS:
    div.t-window-content { position: relative }

The problem is fixed for the official release, and your Telerik points have been updated for the report.

Greetings,
Alex Gyoshev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Rodrigo Longo
Top achievements
Rank 1
answered on 02 Nov 2010, 03:06 PM
Thank you very much por the solution!

Rodrigo
Tags
General Discussions
Asked by
Rodrigo Longo
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Rodrigo Longo
Top achievements
Rank 1
Share this question
or