いくつかの条件を持つページがあり、selectCheckBoxMenu を開こうとすると、メソッドをサーバーから呼び出す必要がありますが、何かおかしなことになります。アイテムのリストが表示されず、常にけいれんします。
<p:selectCheckboxMenu id="scroll"
value="#{adminManageTournamentController.teamListSelected}"
label="#{msg.teams}" filter="true" filterText="Filter"
filterMatchMode="startsWith" panelStyle="width:auto"
onShow="sourceFilterCommand();">
<f:selectItems value="#{adminManageTournamentController.teamList}"
var="team" itemLabel="#{team.name}"
itemValue="#{team.id}"/>
<p:column>
#{team.name}
</p:column>
<p:remoteCommand name="sourceFilterCommand" update="scroll"
actionListener="#{adminManageTournamentController.selectTeamsByConditions}"/>
</p:selectCheckboxMenu>
私は決定のために正しい方法を選択しましたか? けいれんリストを取り除く方法は?