1

選択ボックスに列からのすべての異なる値を表示するにはどうすればよいですか?

ここに必要なものの例があります:
http://datatables.net/examples/api/multi_filter_select.html

選択ボックスには、DB 列 (またはテーブル列) からのすべての異なる値を入力する必要があります。
(DataTables Editor プラグインから) モーダル ウィンドウの追加でこれを行うにはどうすればよいですか?

これを行うはずのスクリプトを次に示しますが、うまくいきません: http://datatables.net/forums/discussion/comment/34461#Comment_34461


モーダル ウィンドウの JS スクリプトは次のとおりです。

$(document).ready(function() {
    editor = new $.fn.dataTable.Editor( {
        "ajaxUrl": "php/browsers.php",
        "domTable": "#example",
        "fields": [
        {"label": "Field 1","name": "field1","type": "select","ipOpts": [   
            {
            "label": "Option 1",
            "value": "option1"  },
            {
            "label": "Option 2",
            "value": "option2"  },
            {
            "label": "Option 3",
            "value": "option3"  },
        ]
        },
        {"label": "Field 2","name": "field2","type": "select","ipOpts": [   
            {
                "label": "Option 1",
            "value": "option1"  }
        ]},
            ]
    } );    

4

0 に答える 0