This question is locked. New answers and comments are not allowed.
Hi There,
I am trying to bind editor in window, editor is being rendered but I am not able to type text in it.
Model:
View:
JavaScript:
windows is being rendered successfully. It shows editor but it's not editable.
Please suggest a way to fix it.
Thanks,
Jigar.
I am trying to bind editor in window, editor is being rendered but I am not able to type text in it.
Model:
<UIHint("Editor")>Property comments As String View:
Html.Telerik().Window().Title("CommentWindow") .Name("CommentWindow") .Modal(True) .Effects(Sub(fx)
fx.Zoom()
fx.OpenDuration(200)
fx.CloseDuration(200) End Sub)
.Resizable(Sub(resizable)
resizable.Enabled(False) resizable.MinHeight(250) resizable.MinWidth(250) resizable.MaxHeight(300) resizable.MaxWidth(300) End Sub)
.Content("")
.Buttons(Function(b) b.Close()).Visible(False).Render()function OnConfirmButtonClick(id) { myid = id; $('#CommentWindow')data('tWindow').center(); $('#CommentWindow').data('tWindow').open()
}windows is being rendered successfully. It shows editor but it's not editable.
Please suggest a way to fix it.
Thanks,
Jigar.