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

Well we're trying to render a shitload of lists. Some of them have only one entry and we want them to appear as read only input fields (so users don't get fooled and it's easier to read). But it seems kinda hard to access the inner selectitems size from outside. I had my go with overwriting the htmlselectonemenu tag... Is there a different nicer way? Even possible to access it on tag level?

/**
 * In case there is only one or less elements in the select list -> set readonly(true)
 */
public class HtmlSelectOneMenuModf extends HtmlSelectOneMenu {

    @Override
    public boolean isReadonly() {
        for (Iterator iterator = getChildren().iterator(); iterator.hasNext();) {
            Object obj = iterator.next();
            if ( obj instanceof UISelectItems) {
                UISelectItemsi = (UISelectItems) obj;
                if(i.getSelectItems().size() <=1)
                    super.setReadonly(true);
            }
        }
        return super.isReadonly();
    }
}

We're chilling on JSF 1.2 btw...

share|improve this question

1 Answer

up vote 1 down vote accepted

Use JSTL fn:length().

<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
...
<h:selectOneMenu value="#{bean.item}" readonly="#{fn:length(bean.items) le 1}">
    <f:selectItems value="#{bean.items}" />
</h:selectOneMenu>
share|improve this answer
learned something new :-) the problem though lies in our implementation, we override UISelectItems and in the getSelectItems() we actually perform the complete resolving of the list, e.g. using drools custom java methods etc. It looks like bad design to implement it on the lowest level, uhm. I'll refactor this as soon as i get some time, thanks. – Toskan Apr 21 '11 at 9:54

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.