You need to sign in to do that
Don't have an account?
How to use checkbox on visualforce page
Hi All,
I am showing Account List on visualforce page using pageblocktable tag. I want to Add checkbox in front of every record. For this i did use <apex:inputcheckbox> tag but checkbox is not showing on page.
Please help me...
I am showing Account List on visualforce page using pageblocktable tag. I want to Add checkbox in front of every record. For this i did use <apex:inputcheckbox> tag but checkbox is not showing on page.
Please help me...
All Answers
<apex:page>
<apex:pageBlock>
<apex:pageBlockTable>
<apex:column>
<apex:inputCheckBox value="{!variableName}"/>
</apex:column>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
If it sloves ur issue please mark it as Best Answer
your solution is working prefectly but i want to know one more thing...
let suppose i want to delete multipe record selecting multiple checkbox then how can i do this in my controller.
Please help me...