Completed
Last Updated: 01 Jul 2016 04:57 by ADMIN
ADMIN
Joana
Created on: 15 Jun 2016 04:34
Category: Editor
Type: Feature Request
1
Styles added via CssFile collection are not passed to the Editor content
Currently, the font family will not be passed to the Editor content. It's reproducible when loading tools from xml file. Possible workaround is to use ContentAreaCssFile to set such style or on the OnClientLoad event:

    <script>
        function OnClientLoad(sender, args) {
            sender.get_contentArea().style["font-family"] = "Arial, Verdana, Tahoma";
        }
    </script>
0 comments