Here is an example. The “curExperience” variable in the EL statement in the column tag is marked as unresolved by the validator.
While I’m at it, the “width” param is also tagged with a warning as “not a valid integer”, though it seems to me a passthrough value like this should be considered valid.
<h:dataTable value="#{addMentorEventBean.allExperiencesList}"
var="curExperience"
cellpadding="0"
cellspacing="0"
border="0"
width="100%"
columnClasses="searchExperienceListCol"
styleClass="searchExperienceList">
<h:column>
<h:outputText value="#{curExperience.experienceDesc}" />
</h:column>
...
Again, thanks for any help you can offer.
Douglas