Hi All,
Im new to JSF and rich face components, im developing using netbeans IDE, here im trying to built list view using rich:datatable and rich:column in this im trying to use filterBy attribute, but im getting comiler error has no attribute found for rich:column component. but i have imported all new jars tried with 4.1.0 and also 4.3 versions of rich faces jar.
Error for this line for sortable and filterBy attribute:
<rich:column sortable="true" sortBy="#{individualTask.taskCreatedBy}"
filterBy="#{individualTask.taskCreatedBy}" filterEvent="onkeyup"
label="Created by">
<f:facet name="header">
<h:outputText value="Created by"/>
</f:facet>
<h:outputText value="#{individualTask.taskCreatedBy}"/>
</rich:column>
</rich:dataTable>
But i can able to get attributes filterValue, filterExpression i guess this is old jar attributes. im not sure where this mapping is happening... Some one please help on this...