When I try and use the mvc html helpers I get javascript errors when I try and use the image browser. When I use the jquery version, everything works just fine.
One of the errors occurs when you open the image browser, then try and close it. Firefox gives a "TypeError: e is null"
version 2012.3.1315
here is the important part of the razor file:
One of the errors occurs when you open the image browser, then try and close it. Firefox gives a "TypeError: e is null"
version 2012.3.1315
here is the important part of the razor file:
@(Html.Kendo().EditorFor(m => m.Body)
.Encode(false)
.HtmlAttributes(new { style = "width: 740px;height:440px" })
.Tools(tools => tools.Clear().InsertImage())
.ImageBrowser(imageBrowser => imageBrowser
.Image("~/Content/Images/{0}")
.Read("Read", "ImageBrowser")
.Create("Create", "ImageBrowser")
.Destroy("Destroy", "ImageBrowser")
.Upload("Upload", "ImageBrowser")
.Thumbnail("Thumbnail", "ImageBrowser"))
)