これが私のmyFacesコードです
<tr:commandButton text="Calculate Modulus" action="#{pageManager.form.calculateModulus}" id="modulusCalculation" partialSubmit="true"/>
<tr:table value="#{pageManager.form.modulusCollection}" var="modulus" width="75%"
inlineStyle="align:center;" partialTriggers="modulusCalculation" autoSubmit="true">
<tr:column headerText="Combination">
<tr:outputLabel value="#{modulus.combination}" />
</tr:column>
<tr:column headerText="Modulus">
<tr:outputLabel value="#{modulus.modulusValue}" />
</tr:column>
</tr:table>
ここでボタンをクリックすると、テーブルが更新されますが、これは起こりません。ボタンのコードには多くの行があり、テーブルに影響する行は次のとおりです。
HashMap<String, Object> modulusInfo = new HashMap<String, Object>();
modulusInfo.put("combination", combination);
modulusInfo.put("modulusValue",modulus);
modulusCollection.add(modulusInfo);
私のコンソールでは、次のエラーが表示されます。
2009 年 12 月 30 日 5:05:07 PM org.apache.myfaces.trinidadinternal.context.RequestContextImpl addPartialTriggerListeners 警告: CoreTable [UIXFacesBeanImpl, id=j_id_jsp_1481482420_15j_id_1] から部分的なトリガーのモジュラス計算が見つかりませんでした
コードのどこが間違っているか教えてもらえますか?