1

私はicefacesバージョン3.0.0を使用しており、次のようにacedataTableコンポーネントを使用しています。

1- Jsfコード:

<ace:dataTable id="cityTable"
                              value="#{weatherBean.cities}"
                              var="city"
                              paginator="true"
                              paginatorPosition="bottom"
                              rendered="#{weatherBean.cities.size()>0}"
                              rows="#{weatherBean.pageSize}"
                              style="width: 950px;">


                         <ace:column id="country" headerText="Country" sortBy="#{city.countryName}"
                                    filterBy="#{city.countryName}" filterMatchMode="contains">
                            <h:outputText id="countryNameCell" value="#{city.countryName}"/>
                        </ace:column>



                        <ace:column id="action" headerText="Actions">
                       <sec:authorize access="hasRole('perm_edit_city')">                       
                            <pretty:link mappingId="editcity">
                                <f:param value="#{city.id}" />
                                <h:graphicImage url="/resources/images/edit.png" style="border: 0px;"></h:graphicImage>
                            </pretty:link>
                        </sec:authorize>        
                            <b/>
                            <sec:authorize access="hasRole('perm_delete_city')">
                                <h:commandButton id="deleteR" image="/resources/images/delete.png"
                                     action="#{weatherBean.deleteCity(city.id)}" 
                                     onclick="var r=confirm('Are you sure you want to delete #{city.name} ?');if (r==true){}else{return false; }"
                                     >
                                </h:commandButton>
                            </sec:authorize>
                        </ace:column>

                    </ace:dataTable>

2-バッキングBeanコード:

@Component("weatherBean")
@Scope("view")
public class WeatherBean {

private List<City> cities;

@Autowired
private CityService cityService;

    @PostConstruct
    public void init() {
            cities = cityService.getAllCity();
    }

    public void deleteCity(Long cityId) {
        log.debug("Delete deleteCity : " + cityId);
        cityService.deleteCity(cityService.getCityById(cityId));
    }

}

問題:

  • datatableは、デフォルトでID1からID20までの都市を表示します。
  • 名前で検索し、たとえばID100からID120で返された結果を検索し、いずれかの検索結果でdeleteメソッドを呼び出そうとすると、古いIDでdeleteメソッドが呼び出されます>>更新されませaction="#{weatherBean.deleteCity(city.id)}"city.id検索後。

アドバイスしてください、ありがとう。

4

1 に答える 1

1

この問題はicefaces3.2.0で解決されました

于 2013-01-23T08:37:04.180 に答える