I
Downloaded open-source version of Telerik
Put Telerik css and js in appropriate folders in project
Added reference to Telerik dll
Wrote HTML http://pastebin.com/FzQDitzA
And I got this http://imageshack.us/photo/my-images/542/testgu.png/
It is all fine but when I cannot type text in this control and comboboxes don't work too
What's the matter?
You are missing a ScriptRegistrar which is responsible for initializing the editor and rendering the required JavaScript files.
Try this:
<body>
<div>
@{ Html.Telerik().Editor()
.Name("editor").Render();
}
</div>
@(Html.Telerik().ScriptRegistrar())
</body>