Say I have a editable datatable, with a custom converter that throws an exception if the edited field is somehow wrong, how would I display the error message in the corresponding row of the datatable?
here's some code, as simple as I can make it.
<h:messages />
<h:datatable>
<h:column>
<h:inputText value="#{bean.property}">
<f:converter converterId="PropertyConverter" />
</h:inputText>
</h:column>
</h:datatable>
If there's an error in one row, how would I place the error message in that row. I can obviously have a column for errors, but how do I target the corresponding row?