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

Kendo dropDownList doesn't work with then Chart on the page

1 Answer 51 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Sharif
Top achievements
Rank 1
Sharif asked on 14 Aug 2013, 02:52 PM
I have simple chart on the page. I added dropdownlist to filter the chart. I chrome the dropdown won't expand. In IE 10.  the dropdown will expand only if I click on the text only. I copied the example form the demo and pasted on the same page and it didn't work. when I removed the chart it worked fine.
   
@(Html.Kendo().DropDownList()
.Name("color")
.DataTextField("Text")
.DataValueField("Value")
.Events(e => e.Change("change"))
.BindTo(new List<SelectListItem>() {
new SelectListItem() {
Text = "Black",
Value = "1"
},
new SelectListItem() {
Text = "Orange",
Value = "2"
},
new SelectListItem() {
Text = "Grey",
Value = "3"
}
})
.Value("1")
)

1 Answer, 1 is accepted

Sort by
0
Sharif
Top achievements
Rank 1
answered on 14 Aug 2013, 06:25 PM
I found I need to put spacer between the dropdown list and the chart-wrapper

<div class"ddl"/>
<div class="spacer"/>
<div class="chart-wrapper"/>
Tags
Charts
Asked by
Sharif
Top achievements
Rank 1
Answers by
Sharif
Top achievements
Rank 1
Share this question
or