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.
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.
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.
Works for me. Can you give a specific example?
<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.
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:
Ok good to see it is being tracked.
Thanks.