w2ui.toolbar - にほんご。

w2toolbar.uncheck

更新日: 2018-09-07

uncheck(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' },
        { type: 'radio',  id: 'item4',  group: '1', text: 'R-2', img: 'icon-add' }
    ]
});

以下のように指定することができます。

w2ui['toolbar'].uncheck('item1');

デモ

ボタンをクリックすると、アイテムをチェック解除します。

JavaScript
| $('#toolbar').w2toolbar({
|   name  : 'mytoolbar',
|   items : [
|     { type: 'check',  id: 'item1', text: 'check1', checked: true },
|     { type: 'check',  id: 'item2', text: 'check2', checked: true },
|     { type: 'check',  id: 'item3', text: 'check3' },
|   ],
| });
|
| $('#get-result').on('click', function(){
|   var result = w2ui['mytoolbar'].uncheck('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ドキュメントを翻訳/改変したものです。