Seam support is not complete, missing extended EL

Any plans on adding the Seam supported extended EL?

0

Works for me. Can you give a specific example?

0
Avatar
Permanently deleted user

<h:outputText value="Event Dimensions" rendered="#{ticketPrintingHandler.getDimensionsTableEnabled()}"
id="dimensionsLabel">
</h:outputText>

On the call getDimensionsTableEnabled it is complaining about it cannot resolve property or method It recognizes the component name but not the method. The method is valid and works fine.

0
Avatar
Permanently deleted user

I think that's this issue:
http://www.jetbrains.net/jira/browse/IDEADEV-26616
(The duplicate linked from there describes the issue in a better way.)
Basically if your method has getter or setter name/signature, then IDEA tries to resolve it as a value expression, which of course fails.

Please vote for/comment on the issue.

Samuel Doyle wrote:

<h:outputText value="Event Dimensions" rendered="#{ticketPrintingHandler.getDimensionsTableEnabled()}"
id="dimensionsLabel">
</h:outputText>

On the call getDimensionsTableEnabled it is complaining about it cannot resolve property or method It recognizes the component name but not the method. The method is valid and works fine.

0
Avatar
Permanently deleted user

Ok good to see it is being tracked.

Thanks.

0

请先登录再写评论。