I am using JSF and want to have a component that should only be displayed when the String value in the associated managed bean is greater than zero. I'm doing it:
rendered="#{tabbedToolbarBean.editor.selectedQuery.length() gt 0}"
In addition, the getter signature for selectedQuery is public String getSelectedQuery(){} . I am getting the following error with the latest weblogic server.
Error: The function length has an invalid prefix or uses a default namespace that is not defined. Correct the prefix or in the jsp document, place the function inside the tag that defines the tag library Namespace
What am I missing? I do not get much help after searching the Internet.
source share