3

Web アプリケーションで DropDown 選択ボックスを備えた Truts2 jQuery グリッド プラグインを使用しました。あの作品はいいですね。

これまでに試したコードは次のとおりです。

@Action(value="selectcountries", results= { 
    @Result(name="success", type="dispatcher", location="ImportedJspFiles/countrys_select.jsp") 
})

public String selectCountries() {
    this.selectCountriesList = provinceController.selectAllCountries();
    return SUCCESS;
}

countrys_select.jsp:

<%@ taglib prefix="s" uri="/struts-tags"%>

<s:select list="selectCountriesList" theme="simple" listKey="countryId" 
    listValue="countryName" />

グリッド列:

<sjg:gridColumn name="countryName"
    index="countryName"
    title="Country"
    sortable="true"
    search="true"
    surl="%{selectcountries}"
    searchoptions="{sopt:['eq','ne','bw','cn'], dataUrl : '%{selectcountries}'}"
    searchtype="select"
    editable="true"
    edittype="select"
    editoptions="{ dataUrl : '%{selectcountries}' }"
    formoptions="{label:'Select a Country'}" />

そして、グリッド列に二重選択タイプを実装したいと思います。しかし、struts2 jquery グリッド ビューで二重選択タイプを実装するにはどうすればよいですか?

  1. 都市を選択
  2. その都市のエリアを選択

特定の都市を選択すると、その都市のエリアをエリア選択ボックスにロードしたいと思います。

誰かが同じことについて解決策を持っていたら、私と共有してください。

4

0 に答える 0