删除YUI Rich Editor标题并使其不可折叠

时间:2010-04-22 22:38:56

标签: html css yui

我正在使用YUI Rich Editor(SimpleEditor),该编辑器的编辑器标题为“文本编辑工具”,而+ / -按钮显示/隐藏编辑工具。我不需要这个,如何隐藏它们或禁用这些功能?

谢谢!

2 个答案:

答案 0 :(得分:1)

将此CSS添加到页面:

.yui-skin-sam .yui-toolbar-container .yui-toolbar-titlebar {
     display: none;
}

为了将来参考,YUI支持位于:http://yuilibrary.com/forum/

答案 1 :(得分:0)

你(我)可以使用这样的配置:

var myConfig = {
    height: '300px',
    width: '522px',
    toolbar: {
        collapse: false,
        titlebar: '',
        draggable: false,
        buttons: [
            { group: 'textstyle', label: 'Font Style',
                buttons: [
                    { type: 'push', label: 'Bold CTRL + SHIFT + B', value: 'bold' },
                    { type: 'push', label: 'Italic CTRL + SHIFT + I', value: 'italic' },
                    { type: 'push', label: 'Underline CTRL + SHIFT + U', value: 'underline' },
                    { type: 'separator' },
                    { type: 'color', label: 'Font Color', value: 'forecolor', disabled: true },
                    { type: 'color', label: 'Background Color', value: 'backcolor', disabled: true }
                ]
            },
            { type: 'separator' },
            { group: 'indentlist', label: 'Lists',
                buttons: [
                    { type: 'push', label: 'Create an Unordered List', value: 'insertunorderedlist' },
                    { type: 'push', label: 'Create an Ordered List', value: 'insertorderedlist' }
                ]
            }
        ]
    }
};