- This topic has 1 reply, 2 voices, and was last updated 17 years, 6 months ago by
Riyad Kalla.
Viewing 2 posts - 1 through 2 (of 2 total)
-
AuthorPosts
-
amattasMemberUsing this code I get isCurrentValue warning in ide for user0
<h:dataTable border="1" value="#{UserMgr.allUsers}" var="user0" style="width: 80%"> <h:column id="username"> <f:facet name="header"> <h:outputText value="User Name"></h:outputText> </f:facet> <h:outputText value="#{user0.username}"></h:outputText></h:column> <h:column id="firstname"> <f:facet name="header"> <h:outputText value="First Name"></h:outputText> </f:facet> <h:outputText value="#{user0.firstname}"></h:outputText></h:column> <h:column id="lastname"> <f:facet name="header"> <h:outputText value="Last Name"></h:outputText> </f:facet> <h:outputText value="#{user0.lastname}"></h:outputText></h:column> <h:column id="email"> <f:facet name="header"> <h:outputText value="E-mail Address"></h:outputText> </f:facet> <h:outputText value="#{user0.email}"></h:outputText></h:column> <h:column id="enabled"> <f:facet name="header"> <h:outputText value="Enabled"></h:outputText> </f:facet> <h:outputText value="Y/N"></h:outputText></h:column> <h:column id="lastlogin"> <f:facet name="header"> <h:outputText value="Last Login"></h:outputText> </f:facet> <h:outputText value="Last Login"></h:outputText></h:column> <h:column id="failures"> <f:facet name="header"> <h:outputText value="Failures"></h:outputText> </f:facet> <h:outputText value="###"></h:outputText></h:column> </h:dataTable>
Riyad KallaMemberamattas,
I was able to reproduce this problem when the class I tried to use in the EL expressions was not property defined in the faces-config.xml file as a mangaged bean, as soon as I fixed that and rebuilt the project those issues cleared up.Attached is my example project.
Attachments:
You must be logged in to view attached files. -
AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)