how can I tell a composite component that it should update another cc?
I tried to give a "update" attribute to the first cc, which is handed to a button. Then I annotated the snd cc with that id. Obviously the id is also found, because I can launch the the page already.
BUT clicking the button: nothing happens!
input cc:
<composite:interface>
<composite:attribute name="update"/>
</composite:interface>
<composite:implementation>
<p:commandButton value="Create" update="#{cc.attrs.update}" action="register...">
</composite:implementation>
JSF:
<cc:myInput update=":myDataTable">
<cc:myDataTable id="myDataTable">
Anyone has a clue how to do proper update of the cc datatable of within the cc input form button?
thnx