ui.igCombo

ui.igCombo_image

igCombo コントロールは jQuery コンボ ボックスであり、仮想化、オートコンプリート、自動入力候補、複数選択、および項目テンプレートをサポートします。igCombo コントロールを使用し、テキスト入力および項目リストから選択したオプションを受け入れるドロップ ダウンを作成できます。この API のクラス、オプション、イベント、メソッドおよびテーマに関する詳細は、上記の関連するタブを参照してください。

以下のコード スニペットは、igCombo コントロールを初期化する方法を示します。

この API を使用して作業を開始するための情報はここをクリックしてください。igCombo コントロールに必要なスクリプトとテーマを参照する方法については、Ignite UI の JavaScript リソースの使用 および Ignite UI のスタイリングとテーマ

コード サンプル

<!doctype html>
  <html>
  <head>
      <!-- Infragistics Combined CSS -->
      <link href="css/themes/infragistics/infragistics.theme.css" rel="stylesheet" type="text/css" />
      <link href="css/structure/infragistics.css" rel="stylesheet" type="text/css" />
      <!-- jQuery Core -->
      <script src="js/jquery.js" type="text/javascript"></script>
      <!-- jQuery UI -->
      <script src="js/jquery-ui.js" type="text/javascript"></script>
      <!-- Infragistics Combined Scripts -->
      <script src="js/infragistics.core.js" type="text/javascript"></script>
            <script src="js/infragistics.lob.js" type="text/javascript"></script>
      <script type="text/javascript">
              $(function () {
                    var colors = [{
                    "Name": "Black"
                  }, {
                    "Name": "Blue"
                  }, {
                    "Name": "Brown"
                  }, {
                    "Name": "Red"
                  }, {
                    "Name": "White"
                  }, {
                    "Name": "Yellow"
                  }];
 
            $("#combo").igCombo({
                    dataSource: colors,
                    textKey: "Name",
                    valueKey: "Name",
                    width: "200px"
              });
          });
      </script>
 
</head>
<body>
   <input id="combo" />
</body>
</html>

関連サンプル

関連トピック

依存関係

jquery-1.9.1.js
jquery.ui.core.js
jquery.ui.widget.js
infragistics.templating.js
infragistics.util.js
infragistics.util.jquery.js
infragistics.datasource.js
infragistics.ui.widget.js

継承

Copyright © 1996 - 2025 Infragistics, Inc. All rights reserved.