Code:
<
script
type
=
"text/javascript"
>
$("#StatementDate").kendoDropDownList();
</
script
>
<
div
class
=
"grid4 inputlabel"
>Statement Date:</
div
>
<
div
class
=
"grid9 inputfield"
>
<
select
id
=
"StatementDate"
name
=
"statementMonth"
style
=
"width:120px;"
>
<
option
selected
=
"selected"
value
=
"Current"
>Current</
option
>
@foreach (KeyValuePair<
int
, DateTime> item in Model.StatementList)
{
<
option
value
=
"@item.Key"
>@item.Value.ToString(Model.CurrentContext.Club.DateFormat)</
option
>
}
</
select
>
<
input
type
=
"button"
id
=
"viewPdf"
value
=
"View Statement"
class
=
"button button3"
style
=
"width:120px;"
/>
</
div
>
9 Answers, 1 is accepted
Do you observe such a phenomenon here?
http://jsfiddle.net/dimodi/bWs9j/
The DropDownList seems to work fine on my side.
On the other hand, even if the browser does not report some elements' position correctly, in certain scenarios, we may not have direct control over this, as we are using jQuery methods for position retrieval. Using our own custom implementation will require major rework that may not be feasible.
Dimo
Telerik

This error is probably caused by the fact that jsFiddle uses an iframe (it does not occur on my PC, but I remember our team reseached such a scenario recently). The problem is fixed in the latest internal build. You can test the jsFiddle with no iframes like this:
http://jsfiddle.net/dimodi/bWs9j/show/
Dimo
Telerik


If there is no fix for this I need to stop using Kendo dropdownlists. Any help is appreciated.


I try with last version Kendo UI Web v2013.2.716, but it seems that don't work. Where did you find the latest internat build? I have problems with datepicker, not with dropdown but with the same issue.

Thanks
Latest internal builds are available from your accounts. When you go to "Products & Subscriptions", you will see a link on the right. Alternatively, when you go to "Download installer and other resources", you will again see "Latest internal builds" links.
Dimo
Telerik