Click here to Skip to main content
15,885,173 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi, I've a composite with calendar component inside. I need to catch an event when calendar was changed but in my mainBean (not composite bean).
So, I've got 4 files: mainBean.java, main.xhtml and coposite: myCalendar.xhtml with calComp.java. I want to call 'changed' event in mainBean.java and have no idea how to achive that.

Here is the code:
Composite:

XML
<composite:interface componentType="myComponent">
    <composite:attribute name="value" required="true"/>
    <composite:attribute
            name="myListener"
            method-signature="void listener()" />

</composite:interface>

<composite:implementation>
    <h:panelGroup id="container">

        <p:calendar
            value="#{cc.attrs.value}"
            valueChangeListener="#{cc.valueChanged}"
            <p:ajax event="dateSelect"  update="@this,:buttonpanel" listener="#{cc.attrs.myListener}"/>
        </p:calendar>

    </h:panelGroup>
</composite:implementation>


Main page:

<cc:inputdate value="#{mainBean.item.myDate}" myListener="#{mainBean.event1}"/>


bean for main page:

C#
public void event1()
    {
        log("Event1!!!!");
    }



I've got also log in setMyDate() method. So I now exactly when mainBean has new date set.

In composite's bean there is only "log code", but It was enough to see that Event1 was called before the new value was set..

My question is: How can I catch an event, that will be called AFTER the value for myDate is set? In that event I want to do "getMyValue" with new value. Thanks for help.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900