A few issues I am having.
- I have trying to put an editor inside an "absolute positioned" "<DIV>" tag.
For some reason, it doesn't display inside the tag. It will always display the control in the upper right hand corner. - I notice when I do a "View Source". I notice that all the telerik code is actually inserted "above" the "beginning <HTML>" tag.
What's up with that? - When the editor does render, I see only "links and text" in a vertical format.
There is no editor. - I am trying this with an MVC3 Razor app which still should be able to load the older MVC2 .dlls.
Here is my code in my "RenderBody()" View.
<div>
@{
Html.Telerik().Editor()
.Name("Editor_Advertisement")
.HtmlAttributes(new { width = "500px" })
.Value("Test")
.Render(); }
</div>
Here is my code in my "LayOut (MasterPage)" View.
<head>
<title>@View.Title</title>
<link href="@Url.Content("~/content/css/main_style.css")" rel="stylesheet" type="text/css" />
<script src="@Url.Content("~/scripts/promotion6_scripts.js")" type="text/javascript"></script>
@*
<script src="@Url.Content("~/Scripts/jquery-1.4.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
*@
@{
Html.Telerik().StyleSheetRegistrar()
.DefaultGroup(group => group.Add("telerik.common.css")
.Add("telerik.vista.css"));
}
</head>
What's going on here?
Thanks,
Mark Richardson