This question is locked. New answers and comments are not allowed.
I try to use the editor as a ViewUserControl the grid. The grid I load using ajax binding. The edit for is in a popup. When the popup is shown for an existing record the html editor doens't show the content. When typing in the content and saving this new content is send to the action on the server.
I tested this on the examples by changing databding to Ajax and also there it's not working.
EditorInGrid. dataBinding.Server() changed to dataBinding.Ajax()
I tested this on the examples by changing databding to Ajax and also there it's not working.
EditorInGrid. dataBinding.Server() changed to dataBinding.Ajax()
<%= Html.Telerik() .Grid(Model) .Name("Grid") .DataKeys(keys => keys.Add(e => e.EmployeeID).RouteKey("Id")) .Editable(editing => editing.Mode(GridEditMode.PopUp)) .DataBinding(dataBinding => dataBinding.Ajax() .Select("EditorInGrid", "Editor") .Update("UpdateEmployee", "Editor")) .Columns(columns => { columns.Bound(e => e.EmployeeID).Width(100); columns.Bound(e => e.FirstName); columns.Bound(e => e.LastName); columns.Bound(e => e.Notes).Width(320).Encoded(false); columns.Command(commands => commands.Edit()).Title("Edit").Width(200); }) .Pageable(paging => paging.PageSize(5)) %>