PowerTools InputMan for ASP.NET 8.0J
SetSelectedIndex メソッド
選択する項目のインデックス。
[jQuery対応]選択する項目を示すインデックスを設定します。
構文
var instance = new GCIM.GcListBox(container, id);
var returnValue; // Type: any

// パラメータ
var value; //タイプ: number

returnValue = instance.SetSelectedIndex(value);
function SetSelectedIndex( 
   value : number
) : any;

パラメータ

value
選択する項目のインデックス。
使用例
function GcListBox1_SelectedIndexChanged(sender, eArgs)
{
    if( sender.GetSelectedIndex() > 1 )
    {
       alert("この項目は選択できません。");
       sender.SetSelectedIndex(-1);
    }
}
参照

GcListBox オブジェクト

 

 


© 2005-2015 GrapeCity inc. All rights reserved.