w2toolbar.show
更新日: 2018-09-07
show(id1, [id2], ...)
id
を指定してアイテムを表示します。 戻り値はinteger
です。
- id: string
- 表示するアイテムのid。
説明
ツールバーに.items
配列が存在していなければなりません。 ツールバーアイテムは.id
プロパティで識別されます。 このメソッドは、元々非表示状態だった*1アイテムが表示された場合に、その個数を返します。
*1 "元々非表示状態"かどうかは判定しておらず、指定したアイテムの個数を返すようです。
ツールバーが以下のように定義されている場合、
$('#toolbar').w2toolbar({
name : 'toolbar',
items : [
{ type: 'check', id: 'item1', text: 'Check', img: 'icon-page', checked: true },
{ type: 'radio', id: 'item3', group: '1', text: 'R-1', img: 'icon-add', hidden: true },
{ type: 'radio', id: 'item4', group: '1', text: 'R-2', img: 'icon-add' },
{ type: 'menu', id: 'item5', text: 'Drop Down',
items: [
{ id: 'id1', text: 'menu 1' },
{ id: 'id2', text: 'menu 2' },
{ id: 'id3', text: 'menu 3' },
]
}
]
});
以下のように指定します。
w2ui['toolbar'].show('item3', 'item4');
メニューのアイテムを隠すこともできます。
w2ui['toolbar'].show('item5:id2', 'item5:id3');
デモ
ボタンをクリックすると、'check1'と'check3'を表示します。
JavaScript
$('#toolbar').w2toolbar({
name : 'mytoolbar',
items : [
{ type: 'check', id: 'item1', text: 'check1', hidden: true },
{ type: 'check', id: 'item2', text: 'check2', hidden: true },
{ type: 'check', id: 'item3', text: 'check3' },
],
});
$('#get-result').on('click', function(){
var result = w2ui['mytoolbar'].show('item1', 'item3');
document.getElementById('result').innerHTML = result + '個を表示しました';
});
HTML
<button id="get-result">実行</button>
<div>
<span id="result"></span>
</div>
<div id="toolbar"></div>
© 2017. .
Code licensed under theMIT License. Documentation licensed underCC BY 3.0.
このコンテンツはvitmalinaによるw2ui.toolbarドキュメントを翻訳/改変したものです。