我正在尝试更改CKedtior中按钮的标签文本和工具提示,我改为喜欢为具有默认值的按钮添加标签文本。我可以将默认值更改为用户定义的值吗?
答案 0 :(得分:0)
在CKEditor源代码中,buttonview.js声明如下:
/**
* Label of the button view. It is configurable using the {@link #label label attribute}.
*
* @readonly
* @member {module:ui/view~View} #labelView
*/
阅读此书后,我尝试了以下正常工作的步骤:
this.set( 'tooltipTitle', '' );
的正下方添加this.set( 'isEnabled', false );
buttonView.bind
行,将'label'
包含在bind
和{{1 }}放在'tooltipTitle'
的参数中。像to
之类的东西。buttonView.bind( 'isOn', 'isEnabled', 'label' ).to( command, 'value', 'isEnabled', 'tooltipTitle' );
;