Aloha の ExtJS ツールバーをサイドバーと同じ方法で無効にする方法はありますか?
Aloha.settings =
modules: ['aloha', 'aloha/jquery']
editables: '.editable'
jQuery: $
sidebar:
disabled: true
toolbar:
disabled: true # does not work
Aloha の ExtJS ツールバーをサイドバーと同じ方法で無効にする方法はありますか?
Aloha.settings =
modules: ['aloha', 'aloha/jquery']
editables: '.editable'
jQuery: $
sidebar:
disabled: true
toolbar:
disabled: true # does not work
次のようなcssで非表示にすることができます:
div.aloha-toolbar {
display: none !important;
}
クラスで要素をマークする
<div class="editable notoolbar"></div>
使用イベント:
Aloha.ready(function () {
var $ = Aloha.jQuery;
Aloha.bind('aloha-editable-activated', function () {
if ($(Aloha.activeEditable.obj[0]).hasClass("notoolbar")) {
$(".aloha-toolbar").hide();
}
});
});
フローティング メニューを無効にする簡単な方法はありません。ソースコードを編集して無効にする必要があります。これを行うには、数行を削除します。1207 ~ 1210行をコメントアウトすると、フローティング メニューは表示されません。
お役に立てれば!