Wijmo UI for the Web
data オプション

デフォルト値: null

このオプションを使用して、カスタマイズされたリボン(リボンタブ、グループ、ボタン)を作成します。リボンのデータは以下のように定義できます。var ribbonData = []; // formatタブの定義 ribbonData[0] = { id: "format", text: "format", groups:[ // Actionsグループの定義 { id:"Actions", text: "Actions", css: "wijmo-wijribbon-actions", // グループのボタンの定義 buttons:[ // 大きいボタンの定義: save { name: "save", tip: 'Save', text: 'Save Button', css: "wijmo-wijribbon-save", buttonType: "bigButton", action: function (e) { alert("Save"); } }, // redoとundoをワンセットにします。 [ { name: "undo", tip: 'Undo', css: "wijmo-wijribbon-undo", buttonType: "button" }, { name: "redo", tip: 'Redo', css: "wijmo-wijribbon-redo", buttonType: "button" } ], // previewとcleanupをワンセットにします。 [ { name: "preview", tip: 'Preview', css: "wijmo-wijribbon-preview" }, { name: "cleanup", tip: 'Clean up', css: "wijmo-wijribbon-cleanup" } ] ] }];現在サポートされているボタンのタイプは、"button"、"buttonWithText"、"bigButton"、"checkbox"、"dropdownButton"、"radio"、"splitButton"です。ユーザーはボタンのテキスト、ツールチップ、クラス、クリック関数を定義できます。1つのグループに複数のボタンがある場合は、それらを配列に入れます。詳細については、customizeribbonbydata.htmlおよびcustomizesimpleribbonbydata.htmlを参照してください。

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: object
    returnsValue = $(".selector").wijribbon("option", "data");
    
    //値を設定します
    var newValue; //タイプ: object
    $(".selector").wijribbon("option", "data", newValue);
        
});
Javascript (Specification) 
var data : object;

関連トピック

参照

options タイプ
wijribbon jQuery ウィジェット

 

 


Copyright © GrapeCity inc. All rights reserved.