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