PowerTools InputMan for ASP.NET 8.0J
GetCheckedIndices メソッド
[jQuery対応]現在チェックボックスがオンになっている項目のインデックスを保持する配列を取得します。
構文
var instance = new GCIM.GcListBox(container, id);
var value; // Type: Array
value = instance.GetCheckedIndices();
function GetCheckedIndices() : Array;

戻り値

型 : Array
インデックスの配列。
使用例
function GcListBox1_ItemCheck(sender, eArgs)
{
    var listitem = sender.GetCheckedIndices();
    for( var i = 0; i < listitem.length; i++ )
    {
        // チェックされた項目を選択状態にします。 
        sender.SetSelected(listitem[i], true);
    }
}
参照

GcListBox オブジェクト

 

 


© 2005-2015 GrapeCity inc. All rights reserved.