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 column of radio buttons in h:datatable in JSF2 but I can not find a way to group them. Meaning all of them can be selected at the same time where as whole point of radio button is so that only one can be selected at any given time. I am sure there will be standard way of doing it.

I am using myfaces. Can use richfaces if really needed to.

Can any one help with this.

share|improve this question
What do you mean "all of them can be selected at the same time?" Grouping sounds like the opposite of what you want. – Matt Ball Aug 22 '11 at 11:17

1 Answer

up vote 2 down vote accepted

When using standard JSF <h:selectOneRadio> component inside a <h:dataTable> you'll need to bring a shot of JavaScript into the game which unchecks all other radio buttons in the same column when one is checked.

<h:column>
    <h:selectOneRadio onclick="uncheckOthers(this);">
</h:column>

with

function uncheckOthers(radio) {
    var name = radio.name.substring(radio.name.lastIndexOf(':'));
    var elements = radio.form.elements;
    for (var i = 0; i < elements.length; i++) {
        if (elements[i].name.substring(elements[i].name.lastIndexOf(':')) == name) {
            elements[i].checked = false;
        }
    }
    radio.checked = true;
}
share|improve this answer
Thanks. I checked your blog as well and your utlmiate crud example had this but that was 2006 I thought there might be some better options in 2011 but guess not :). Accepting . – Java Ka Baby Aug 22 '11 at 20:04
You're welcome. Some component libraries like PrimeFaces have by the way builtin support for exactly this use case by some extra attribute or a special component. – BalusC Aug 22 '11 at 20:06

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.