This question is locked. New answers and comments are not allowed.
I use the EditorFor(...) to bind the editor to my property. But the problem arises in loading when it doesnt decode the data to show it properly.
for example:
after loading a saved data in the editor , I will see this :
it s a <strong>sample </strong>entry
instead of :
it s a sample entry
is it a bug?
P.S: the used code is :
for example:
after loading a saved data in the editor , I will see this :
it s a <strong>sample </strong>entry
instead of :
it s a sample entry
is it a bug?
P.S: the used code is :
@(Html.Telerik().EditorFor(model => model.Description) .HtmlAttributes(new { style = "height:150px;" }))