You need to sign in to do that
Don't have an account?

Help:Checkboxes and action support
<apex:column value="{!houses.name}">
<apex:facet name="header"><apex:inputCheckbox value="{!chkhousehold_lname}">Name</apex:inputCheckbox>
<Apex:actionSupport event="onchange" action="{!householdInputCheck}" rerender="hldSection" />
</apex:facet>
</apex:column>
By doing this my checkboxes are getting vanished and i cant select the checkbox
Can you please post the full code
Th code is too big and its lil difficult to figure it out cos my naming conventions are not proper.I'll narrate you the requirement.I needed a checkbox inside the column header. So by having this piece of code inside my pageblocktable.I got a checkboox inside the column header .Now i want to check if the checkbox is checked or not so for that i tried
<apex:column value="{!houses.name}">
<apex:facet name="header"><apex:
</apex:facet>
</apex:column>
Now i want to check if the checkbox is checked or not so for that i tried using action support but when i use it the checkboxes become invisible.Its not displyed on the page
<apex:column value="{!houses.name}">
<apex:facet name="header">
<apex:inputCheckbox selected="{!chkhousehold_lname}">Name</apex:inputCheckbox>
<Apex:actionSupport event="onchange" action="{!householdInputCheck}" rerender="hldSection" />
</apex:facet>
</apex:column>
Try this, you need to give action support of checkbox.