Declined
Last Updated: 07 Jun 2013 19:35 by ADMIN
Kevin
Created on: 08 Mar 2012 14:55
Category: Kendo UI for jQuery
Type: Feature Request
1
Fix setting value on rich text editor with null value
When setting the value for the rich text editor, if the object value is null, it blows up. I have to check if the value is null and if so, set it to an empty string. 
var propValue = linkData[propertyName];
                        var editor = $(this).data("kendoEditor");
                        if (propValue) {
                            editor.value(propValue);
                        } else {
                            // clear value
                            editor.value( '' );
                        }
1 comment
ADMIN
Brandon
Posted on: 07 Jun 2013 19:35
please submit this item as a bug on the Kendo UI forums or via the ticketing system, with a runnable JSFiddle/JSBin.