1

JSFページにデータテーブルを作成しています。これは、すべての列のフッターと、列ページごとの値の合計を示しています。

ページングにRichfaces datascrollerを使用しています。

richfaces datascroller で次のページをクリックすると、そのページの列値の合計でフッターを更新する必要がありますが、これが問題になります

このディスカッションhttp://forums.sun.com/thread.jspa?threadID=5254959に従って、ページごとの合計を計算するコードを作成することができました

データテーブルを含むページが読み込まれると、フッターに列の合計が正しく表示されました。データスクローラーで次のページをクリックすると、同じ値が残ります。
たとえば、最初のページの列の合計が 5 で、2 ページ目の列の合計が 3 の場合。

次のページをクリックすると、3に更新する必要がありますが、5は変更されません。

データスクローラーの次のボタンをクリックすると、データテーブル本体のみが更新されるようです。Richfaces または JSF で、クリックごとにフッターを更新する方法はありますか? または、私の問題を解決する Richfaces datascroller 以外の代替手段はありますか?

私のJSFコードは

<h:dataTable id="summary" binding="#{outboundCall.summaryTable}">

                                </h:dataTable>
                                <rich:datascroller reRender="summary" for="summary" style="width:623px;font-family : Verdana;font-weight: bold;">

                                </rich:datascroller>

私のJavaコードは

public HtmlDataTable getSummaryTable() 
{
    summaryTable = new HtmlDataTable();
    summaryTable.setRowClasses("datatablecontent");
    summaryTable.setColumnClasses("datatablecontent");
    summaryTable.setHeaderClass("datatableheader");
    summaryTable.setFooterClass("datatablecontent");
    summaryTable.setVar("data");
    summaryTable.setRows(5);
    //summaryTable.setId("summaryTable");
    summaryTable.setValueExpression("value", createValueExpression("#{outboundCall.summaryReports}", List.class));
    summaryTable.setRendered(getDataTableRendered());

    HtmlColumn column1 = getColumnDetails("Dialled Date", "#{data.dialledDate}");
    HtmlOutputText footerText1 = new HtmlOutputText();
    footerText1.setValue("Total");        
    column1.setFooter(footerText1);
    summaryTable.getChildren().add(column1);

    if(getStatus().equalsIgnoreCase("success") || getStatus().equalsIgnoreCase("all"))
    {
        System.out.println("Before footer calculation");
        int subTotalPrice = 0;
        for (int i = summaryTable.getFirst(); 
                 i < summaryTable.getFirst() + summaryTable.getRows() && 
                 i < getSummaryReports().size(); i++) 
        {
            SummaryReportsForOutBoundCalls dataItem = getSummaryReports().get(i);
            String dataItemPrice = dataItem.getSuccessCount();
            subTotalPrice += Integer.parseInt(dataItemPrice);
            dataItem.setTotalCallsTotal(Integer.toString(subTotalPrice));
        }

        setFooterTotalToDisplay(Integer.toString(subTotalPrice));
        HtmlColumn column2 = getColumnDetails("Success", "#{data.successCount}");
        HtmlOutputText footerText2 = new HtmlOutputText();
        footerText2.setValue(subTotalPrice);
        column2.setFooter(footerText2);

        summaryTable.getChildren().add(column2);            
    }

    return summaryTable;
}

これは、ページごとの合計を計算したコードです

public List<SummaryReportsForOutBoundCalls> getSummaryReports() 
{
    int total = 0;

    //getSummaryTable();

    for (int i = summaryTable.getFirst(); 
     i < summaryTable.getFirst() + summaryTable.getRows() && 
     i < summaryReports.size(); i++) 
    {
        SummaryReportsForOutBoundCalls dataItem = summaryReports.get(i);
        String dataItemPrice = dataItem.getSuccessCount();
        total += Integer.parseInt(dataItemPrice);
        dataItem.setTotalCallsTotal(Integer.toString(total));

    }       
    scroller.setOncomplete("setValue('"+total+"')");
    scroller.setOnclick("setValue('"+total+"')");
    setFooterTotalToDisplay(Integer.toString(total));
    footerText2.setValue(total);

    return summaryReports;              
}

これを解決するのを手伝ってください

前もって感謝します

4

1 に答える 1

1

1 週間の骨の折れる検索の後、a4j:jsFunction が問題を解決してくれることがわかりました。これよりも優れたソリューションはありますか?私はそれについて知りたいと思っています。

于 2010-08-08T10:43:37.923 に答える