と があり<p:inputText value="#{beans.text}" />
ます<p:commandButton actionlistener="#{beans.method}" />
。inputTextで「enter」してボタンからactinoListener-Methodを実行するにはどうすればよいですか??
回答ありがとうございます
何かがうまくいかなかった。ここにコードスニペットがあります->
<h:panelGrid columns="2">
<p:commandButton actionListener="#{hoursView.saveOrUpdateHour}" />
<p:commandButton actionListener="#{hoursView.onFilterChange()}" oncomplete="dlgHoursFilter.show()" immediate="true" update=":hoursFilter" />
</h:panelGrid>
</h:panelGrid>
<h:panelGrid columns="4" class="buttonContent" id="buttonView">
<p:commandButton ajax="false" actionListener="#{hoursView.showDay()}" immediate="true" update="hoursList" />
<p:commandButton ajax="false" actionListener="#{hoursView.showWeek()}" immediate="true" update="hoursList" />
<p:commandButton ajax="false" actionListener="#{hoursView.showMonth()}" immediate="true" update="hoursList" />
<p:commandButton ajax="false" actionListener="#{hoursView.showAll()}" immediate="true" update="hoursList" />
</h:panelGrid>
<h:panelGrid columns="3" id="tableGrid">
<p:dataTable id="hoursList" value="#{hoursView.listHours}"
var="hours" widgetVar="hoursTable" resizableColumns="true"
emptyMessage="#{msg.noData}" rowKey="#{hours.id}"
selection="#{hoursView.selected}" selectionMode="single">
<p:ajax event="rowDblselect" update=":hourEditDialog"
listener="#{hoursView.onHourSelect}"
oncomplete="dlgHourEdit.show()" />
<f:facet name="header">
<h:panelGrid columns="3" class="buttonContent" id="regexContent">
<h:outputText value="#{msg.regexHour}" />
<p:inputText value="#{hoursView.regex}" id="regex">
</p:inputText>
<p:commandButton icon="addButton" id="regexSave"
process="regexContent" actionListener="#{hoursView.regexSave}"
update=":editContent:hoursList,:editContent:growl,regex">
<p:defaultCommand target="regexSave" scope="regexContent" />
</p:commandButton>
<p:tooltip for="regexSave" value="#{msg.regexSave}"
showEffect="fade" hideEffect="fade" />
</h:panelGrid>
</f:facet>
「enter」イベントを起動すると、regexSave-Method が実行されます。しかし、saveOrUpdateHour のメソッドも....
何かがうまくいかなかった。ここにコードスニペットがあります->
<h:panelGrid columns="2">
<p:commandButton actionListener="#{hoursView.saveOrUpdateHour}" />
<p:commandButton actionListener="#{hoursView.onFilterChange()}" oncomplete="dlgHoursFilter.show()" immediate="true" update=":hoursFilter" />
</h:panelGrid>
</h:panelGrid>
<h:panelGrid columns="4" class="buttonContent" id="buttonView">
<p:commandButton ajax="false" actionListener="#{hoursView.showDay()}" immediate="true" update="hoursList" />
<p:commandButton ajax="false" actionListener="#{hoursView.showWeek()}" immediate="true" update="hoursList" />
<p:commandButton ajax="false" actionListener="#{hoursView.showMonth()}" immediate="true" update="hoursList" />
<p:commandButton ajax="false" actionListener="#{hoursView.showAll()}" immediate="true" update="hoursList" />
</h:panelGrid>
<h:panelGrid columns="3">
<h:outputText value="#{msg.regexHour}" />
<p:inputText value="#{hoursView.regex}" id="regex">
<p:ajax event="change" update="hoursList, growl" listener="#{hoursView.regexSave}" />
</p:inputText>
<p:commandButton actionListener="#{hoursView.regexSave}" update="hoursList, growl" />
</h:panelGrid>
「enter」イベントを起動すると、regexSave-Method が実行されます。しかし、saveOrUpdateHour のメソッドも....
その間、コードを少し構成しました。これで、テキスト フィールドとボタンがテーブルのヘッダーに表示されます。
<h:panelGrid columns="3" id="tableGrid">
<p:dataTable id="hoursList" value="#{hoursView.listHours}"
var="hours" widgetVar="hoursTable" resizableColumns="true"
emptyMessage="#{msg.noData}" rowKey="#{hours.id}"
selection="#{hoursView.selected}" selectionMode="single">
<p:ajax event="rowDblselect" update=":hourEditDialog"
listener="#{hoursView.onHourSelect}"
oncomplete="dlgHourEdit.show()" />
<f:facet name="header">
<h:panelGrid columns="3" class="buttonContent" id="regexContent">
<h:outputText value="#{msg.regexHour}" />
<p:inputText value="#{hoursView.regex}" id="regex">
</p:inputText>
<p:commandButton icon="addButton" id="regexSave"
process="regexContent" actionListener="#{hoursView.regexSave}"
update=":editContent:hoursList,:editContent:growl,regex">
<p:defaultCommand target="regexSave" scope="regexContent" />
</p:commandButton>
<p:tooltip for="regexSave" value="#{msg.regexSave}"
showEffect="fade" hideEffect="fade" />
</h:panelGrid>
</f:facet> ....