Hi
Hi,
Just as an example of how badly we need #{cc.attrs.action} or
#{cc.attrs.actionListener} to work in JSF 2.1, here is a mail from the
myfaces-user-list from today (some parts are cut for clarity):
For example imagine a simple component that uses a commandLink and has two
attributes: "action" and "actionListener":
<cc:interface>
<cc:attribute name="action" method-signature="java.lang.String action()"
default="???" />
<cc:attribute name="actionListener" method-signature="voidactionListener(javax.faces.event.ActionEvent)" default="???" />
</cc:interface>
<cc:implementation>
<tr:commandLink action="#{cc.attrs.action}"
actionListener="#{cc.attrs.actionListener}" />
</cc:implementation>
---> The users really expect this to work! Frankly I also do and I
guess everyone else agrees.