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

I went through this question from SO How to use JSF's h:selectBooleanCheckbox with h:dataTable to create one object per row?

Using the single checkbox as shown in above question i want to find out whether i can make h:datatable cell editable so that user can edit all the rows and columns at once and submit

Here is part of bean class

public class bean {
private List<Group> GroupList;

private Map<Long, Boolean> checked = new HashMap<Long, Boolean>();

public void setChecked(Map<Long, Boolean> checked) {
    this.checked = checked;
}

public Map<Long, Boolean> getChecked() {
    return checked;
}


}

And here is my JSF page

<h:dataTable id="editTable" styleClass = "listtable" value="#{bean.GroupList}"  var="group" border="1" first="0" rows="8" width="75%" frame="hsides" rules="all" cellpadding="5" headerClass="tableheading" rowClasses="firstrow, secondrow">

    <f:facet name="header">
    <h:outputText value="Groups"></h:outputText>
    </f:facet>

    <h:column>
        <f:facet name="header">
        <h:outputText value="GroupId"></h:outputText>
        </f:facet>
        <h:outputText value="#{group.Id}" rendered=""></h:outputText>
        <h:inputText value="#{group.Id}" rendered=""/>
    </h:column>

    <h:column>
        <f:facet name="header">
        <h:outputText value="GroupName"></h:outputText>
        </f:facet>
        <h:outputText value="#{group.Name}" rendered=""></h:outputText>
        <h:inputText value="#{group.Name}" rendered=""/>
    </h:column>


    <h:column>
        <f:facet name="header">
        <h:outputText value="Check to Enable/Disable"></h:outputText>
        </f:facet>
        <h:selectBooleanCheckbox value="#{bean.checked[group.Id]}" />
    </h:column>

    </h:dataTable>

What should be kept in rendered attribute so that when it is checked h:inputtext is rendered and when not checked h:outputtext is rendered?

share|improve this question

1 Answer

up vote 1 down vote accepted

Just bind to the same property. It returns a Boolean anyway. You can use ! or not to negate it.

<h:outputText value="#{group.Id}" rendered="#{!bean.checked[group.Id]}" />
<h:inputText value="#{group.Id}" rendered="#{bean.checked[group.Id]}" />
...
<h:outputText value="#{group.Name}" rendered="#{!bean.checked[group.Id]}" />
<h:inputText value="#{group.Name}" rendered="#{bean.checked[group.Id]}" />
share|improve this answer
@BalusC-Thanks for the response.but nothing is happening when i do it.i tried with ! and not also. – Sreeram Sep 21 '11 at 14:39
You must submit the form after checking the checkbox. Your bean must be in session (or view) scope instead of request scope. – BalusC Sep 21 '11 at 14:44
No i didnt submit the form.Yes my bean is session scoped.i should make it request scoped? – Sreeram Sep 21 '11 at 14:46
You must submit the form to get the checkbox values to be applied and the page to be re-rendered. Session scope is fine (it's only a bit too broad, the bean is now shared between all other browser tabs/windows which may lead to unexpected results when interacting with the same page in multiple windows/tabs, I'd prefer Tomahawk's <t:saveState>). – BalusC Sep 21 '11 at 14:49
if i make like this <h:selectBooleanCheckbox value="#{bean.checked[group.Id]} onclick="submit()" /> Is it correct? – Sreeram Sep 21 '11 at 14:52
show 5 more comments

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.