Completed
Last Updated: 20 May 2016 16:24 by ADMIN
ADMIN
Misho
Created on: 10 May 2016 07:05
Category: Editor
Type: Feature Request
0
JS error is thrown when RadEditor EditType="Inline" with Material skin
The following error is thrown when RadEditor is set in Inline mode with Material skin:
TypeError: view.modesRowContainer(...) is undefined


Workaround:

Sys.Application.add_load(function () {
                var EditorLightweightView = Telerik.Web.UI.Editor.LightweightView;
                EditorLightweightView.prototype.modesRowContainerOriginal = EditorLightweightView.prototype.modesRowContainer;
                EditorLightweightView.prototype.modesRowContainer = function () {
                    return this.modesRowContainerOriginal() || {};
                }
            });

0 comments