rtehtmlareaに新しいButtonを追加しました。これで、アイコンの代わりにテキストが表示されます。新しいButtonのJavaScriptモジュールで次のbuttonConfigurationを使用してテキストを設定できますが、ボタンの寸法はアイコンの寸法にとどまり、テキストは折り返されません。だから私はこれをどのようにすることができますか?TYPO3でrtehtmlareaボタンのサイズを変更する7.6
configurePlugin: function(editor){
this.buttonsConfiguration = this.editorConfiguration.buttons;
this.placeholderConfiguration = this.editorConfiguration.placeholders;
/*
* Registering plugin "About" informations
*/
var pluginInformation = {
...
};
this.registerPluginInformation(pluginInformation);
/*
* Registering the buttons
*/
var buttonList = this.placeholderConfiguration;
if(buttonList !== undefined){
for (var i = 0; i < buttonList.length; ++i) {
var button = buttonList[i],
buttonId = button.name;
var buttonConfiguration = {
id : buttonId,
tooltip : button.label,
text : button.label,
action : 'onButtonPress',
hotKey : (button.hotkey ? button.hotkey : null),
dimensions : {
// not working for the button, it stays at 24x24 px
width: 600,
height: 250
}
};
this.registerButton(buttonConfiguration);
}
}
return true;
}