InCell 編集が有効p:dataTable
になっているプライムフェイスがあり、新しく追加された行の RowEditor をトリガー/アクティブ化したいと考えています。
XHTMLの抜粋
<p:commandButton id="btnAddEntry" value="Add new row" actionListener="#{myBean.addNewCar}" ... update="carTable growl" process="@this carTable ..."/>
<p:dataTable id="carTable" var="car" value="#{myBean.cars}" ... editable="true">
<p:column ...>
<p:cellEditor>
...
</p:cellEditor>
</p:column>
...
<p:column ...>
<p:rowEditor />
</p:column>
...
</p:dataTable>
ビーンメソッドについてこれまでに持っているものは次のとおりです。
public void addNewCar() {
Car newCar = new Car();
cars.add(newCar);
FacesContext facesContext = FacesContext.getCurrentInstance();
UIComponent uiTable = ComponentUtils.findComponent(facesContext.getViewRoot(), "carTable");
DataTable table = (DataTable) uiTable;
final AjaxBehavior behavior = new AjaxBehavior();
RowEditEvent rowEditEvent = new RowEditEvent(uiTable, behavior, table.getRowData());
rowEditEvent.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
table.broadcast(rowEditEvent);
}
わからない
- これが正しいアプローチである場合
- はいの場合
RowEditEvent(UIComponent component, Behavior behavior, Object object)
、3 番目のパラメーターとしてコンストラクターに渡すオブジェクト