Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table where one of it's columns contains a dropdown list (HtmlSelectItems component). For any given row in this table, I want to be able to show or hide the dropdown at runtime, based on specific application conditions.

My solution in this case was to use the component's pre-render event listener mechanism provided by JSF2.0 implementation. Basically in the JSF page I assigned an id to the HtmlSelectItems component (living inside a h:column) and set it with a pre render f:event element. The f:event is pointing to one of my methods which receives the component id and process it.

My issue is that the HtmlSelectItems instance is SHARED between all the table rows, and if say I call HtmlSelectItems.setRender(false) on one dropdown list component, all the subsequent rows will stop displaying the drop downs. In fact the f:event pre render listener will stop getting called once the first setRender(false) is called on a dropdown

I can understand the fact that sharing one HtmlSelectItems instance between the table rows has a positive impact on performance overall, but shouldn't this component instance be re-initialized on each row?

Thanks a lot for any clarifications in this regard.

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to let the rendered condition depend on the row itself, not on the parent bean.

E.g.

<h:dataTable value="#{bean.list}" var="item">
    <h:column>
        <h:selectOneMenu rendered="#{item.showDropdown}">
            ...
        </h:selectOneMenu>
    </h:column>
</h:dataTable>

instead of

<h:dataTable value="#{bean.list}" var="item">
    <h:column>
        <h:selectOneMenu rendered="#{bean.showDropdown}">
            ...
        </h:selectOneMenu>
    </h:column>
</h:dataTable>

Or if it needs to be determined by the #{bean} rather than #{item} due to some design restrictions, then there are several ways.

If you're using DataModel as datatable's value, then you can get the current row as follows:

public boolean isShowDropdown() {
    Item item = model.getRowData();
    return shouldShowDropdown(item); // Do your thing.
}

If not, then maintain a Map<Long, Boolean> instead where the key is actually the identifier of the row item and the value represents whether the dropdown should be shown. This can then be used as follows:

<h:dataTable value="#{bean.list}" var="item">
    <h:column>
        <h:selectOneMenu rendered="#{bean.showDropdown[item.id]}">
            ...
        </h:selectOneMenu>
    </h:column>
</h:dataTable>
share|improve this answer
Thanks very much for the answer BalusC. We changed our code to use the "rendered" attribute. I was just hoping I can introspect the row' component and modify it's state wihout having to specify the "rendered". – user786611 Jun 7 '11 at 17:06
You're welcome. Since you're new here, if an answer helped in solving the problem, please don't forget to mark it accepted. See also meta.stackoverflow.com/questions/5234/… – BalusC Jun 7 '11 at 17:11
Done. Thanks again. – user786611 Jun 8 '11 at 20:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.