什么是所有可能的设置在TinyMCE中的Add按钮()函数的属性?(What are all the

2019-08-07 07:54发布

该文件是不是对这个很清楚。

名称 - 字符串 - 按钮名称的补充。

设置-对象-设置与标题,CMD 对象。

“等等”? 真? 我在哪里可以看到可能的属性的休息吗?

Answer 1:

  • autofocus :渲染时如果控件应侧重
  • border :边框框中的值例如:1 1 1 1
  • classes :空间隔开的类来添加列表
  • disabled :默认情况下禁用控制
  • hidden :在控制隐藏默认
  • icon :图标使用的按钮
  • image :图像以用于图标
  • margin :保证金框值例如:1 1 1 1
  • minHeight :用于控制最小高度
  • minWidth :用于控制最小宽度
  • name :控制实例的名称
  • padding :填充框值例如:1 1 1 1
  • role :WAI-ARIA角色使用控制
  • size :按钮小的尺寸|中|大
  • style :风格CSS属性添加
  • text :文本内部部件显示
  • tooltip :提示文字悬停时显示

对于所有的设置和方法的完整列表,请参阅TinyMCE的文档页面



Answer 2:

你想知道什么是设置可能适合的设置对象(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

这些设置会被分配在功能createButton类的ControlManager



Answer 3:

有过试图找到同样的问题addButton文档在V4我发现的链接,以防万一有人需要它。

tinymce.ui.Button

希望它可以帮助别人!



文章来源: What are all the possible settings attributes in TinyMCE's addButton() function?