0

動的リスト (ドロップダウン) を使用して Struts2 グリッド フィルター列を機能させることができません。コードは以下です。Struts グリッド 2.2 を使用しています。列で edittype="select" を試しました。運が悪い:(

<sjg:grid id="unAssignedTable" 
                    ...


                    filter="true"
                    **filterOptions="{ stringResult :true,
                                     searchOnEnter : true,
                                    enableClear : true}"**

                ..
                    >


                    ...
                    <sjg:gridColumn name="countryDescription" index="countryDescription" title="Country" sortable="true" search="true" edittype="select"  />
                    ....
                </sjg:grid>

基本的に、ここのようにshipType列に検索フィルターが必要ですhttp://www.trirand.com/blog/phpjqgrid/examples/searching/search_toolbar/default.php

4

2 に答える 2

0

パラメータ (dataInit) と構文がわかれば簡単です。

<sjg:gridColumn name="test" index="test" title="Test" sortable="true" width="90"
                                        searchoptions="{   dataInit:function(elem) {myfunction(elem) }  }" />
于 2012-11-29T12:37:52.190 に答える
0

これは、フィルター要素の id 属性がわかっている場合に実行できます。JQuery などを使用して必要な HTML コードを要素に追加するだけです。

于 2012-11-20T16:20:01.790 に答える