TinyMCE的addButton()函数中所有可能的设置属性是什么?
这个文件不是很清楚。
名称 – string – 要添加的button名称。
设置 – 对象 – 设置标题,CMD 等对象。
“等等”? 真? 我在哪里可以看到其余的可能属性?
-
autofocus
:如果控件在渲染时应该被聚焦,则为真 -
border
框值示例:1 1 1 1 -
classes
:空格分隔的类添加列表 -
disabled
:默认情况下禁用控件 -
hidden
:控件是否被默认隐藏 -
icon
:用于button的图标 -
image
:用于图标的image
-
margin
:保证金框值例如:1 1 1 1 -
minHeight
:控件的最小高度 -
minWidth
:控件的最小宽度 -
name
:控件实例的名称 -
padding
:填充框值示例:1 1 1 1 -
role
:WAI-ARIAangular色用于控制 -
size
:button尺寸小|中|大 -
style
:样式CSS属性添加 -
text
:要显示在小部件中的文本 -
tooltip
:工具提示hover时显示的文字
有关所有设置和方法的完整列表,请参阅TinyMCE文档页面
你想知道什么设置可以适应设置对象(tinymce 3)。 这里是:
title --> title label --> label scope --> scope onclick --> function to be called onclick menu_button --> flag, defines if the button is a menu button cmd --> tinymce command to get executed onClick ui --> paramter for the tinymce command cmd value --> value for the tinymce command cmd
这些设置被分配到类ControlManager
createButton
函数中。
在尝试在V4中查找addButton
文档时遇到了同样的问题,我find了链接,以防万一需要。
tinymce.ui.Button
希望它可以帮助别人!