This question is locked. New answers and comments are not allowed.
I am experiencing a weird problem with telerik scripts. My layout view has a script registrar@Html.Telerik().ScriptRegistrar() and in my view, i add in additional scripts
@(Html.Telerik().ScriptRegistrar()
.DefaultGroup(grp => grp
.Add("~/Scripts/jquery.InputMask.js")
.Add("~/Scripts/chosen.jquery.js")
.Add("~/Scripts/jquery.custom1.js")
.Add("~/Scripts/jquery.custom2.js")
.Add("~/Scripts/jquery.form.js")
.Add("~/Scripts/jquery.livequery.js")
.Compress(true)))
My view has telerik dropdownlistfor and other controls that use my custom scripts. However, the telerik downdownlistfor works only on controls that are at the top of the view and not on those at the bottom. For example, my dropdownlist is selectable when at thtop of the page, but not when at the bottom. My telerik integer textbox also works well when at the top of the page but not when at the bottom. My other scripts work all over the page. What can be the cause of this problem.