This question is locked. New answers and comments are not allowed.
Hi
I have got a Combo Box which is disbaled. When it should be enabled.
It is as follows:
The resource files I am loading are as follows. i have to load them like this instead of ScriptRegistrar, etc because I am using composite C1 which does not recognise telerik in the masterlayout only in a mvc player.
Can you see what I am doing wrong?
David
I have got a Combo Box which is disbaled. When it should be enabled.
It is as follows:
@( this.Html.Telerik().DropDownList() .Name("PageSize") .SelectedIndex(0) .ClientEvents(events => events.OnChange("PageSize_DropDownListChange")) .Items(items => { items.Add().Text("10").Value("10"); items.Add().Text("20").Value("20"); items.Add().Text("30").Value("30"); items.Add().Text("40").Value("40"); items.Add().Text("50").Value("50"); items.Add().Text("100").Value("100"); items.Add().Text("200").Value("200"); }) ) The resource files I am loading are as follows. i have to load them like this instead of ScriptRegistrar, etc because I am using composite C1 which does not recognise telerik in the masterlayout only in a mvc player.
<link rel="stylesheet" href="~/content/2012.1.214/telerik.common.min.css" type="text/css" /> <link rel="stylesheet" href="~/content/2012.1.214/telerik.black.min.css" type="text/css" /> <link rel="stylesheet" href="~/content/2012.1.214/telerik.rtl.min.css" type="text/css" /> <script src="/Scripts/2012.1.214/jquery-1.7.1.min.js" type="text/javascript" language="javascript"> </script> <script src="/Scripts/2012.1.214/jquery.validate.min.js" type="text/javascript" language="javascript"> </script> <script src="/Scripts/2012.1.214/telerik.common.min.js" type="text/javascript" language="javascript"> </script> <script src="/Scripts/2012.1.214/telerik.all.min.js" type="text/javascript" language="javascript"> </script> Can you see what I am doing wrong?
David