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

Hi all i want to check all the checkboxes in div on click, i have a grid type designed structure made of divs in the header column i have an check box column and in the,what i want is when i click on a main check box all the check boxes of the div should be checked

**if i check any one of the checkbox from the checkbox column all the checkboxes in that row should be checked based on the check box checked from the checkbox column..

i have been trying some thing i had done with checking all the checkboxes but when i click on the checkboxes all the checkboxes should be unchecked

this is a sample JSFiddle

<div class="grid row-fluid" id="rolegrid">
    <div>
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="commoncheckbox" name="alcolumncheckbox" class="regular-checkbox" ><label for="commoncheckbox"></label></label></span> 
        <span class="span1">Page Name</span>
        <span class="span1">Add</span> 
        <span class="span1">Edit</span>
        <span class="span1">Delete</span>
        <span class="span1">View</span>                    
    </div>
    <div>
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="rowcommoncheckbox-@rowcommon" name="selectedObjects" value="@item.Value"   class="regular-checkbox"><label for="rowcommoncheckbox-@rowcommon"></label></label></span> 

        <span class="span1">@item.Text</span>
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="Add-@Add"  name="txtAdd" class="regular-checkbox"><label for="Add-@Add"></label></label></span>  
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="Edit-@Edit"  name="txtEdit" class="regular-checkbox"><label for="Edit-@Edit"></label></label></span>  
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="Delete-@Delete"  name="txtDel" class="regular-checkbox"><label for="Delete-@Delete"></label></label></span>  
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="View-@View" name="txtCheck" class="regular-checkbox"><label for="View-@View"></label></label></span>                                      
    </div>     
    <div>
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="rowcommoncheckbox-@rowcommon" name="selectedObjects" value="@item.Value"   class="regular-checkbox"><label for="rowcommoncheckbox-@rowcommon"></label></label></span>  
        <span class="span1">@item.Text</span>
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="Add-@Add"  name="txtAdd" class="regular-checkbox"><label for="Add-@Add"></label></label></span>  
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="Edit-@Edit"  name="txtEdit" class="regular-checkbox"><label for="Edit-@Edit"></label></label></span>  
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="Delete-@Delete"  name="txtDel" class="regular-checkbox"><label for="Delete-@Delete"></label></label></span>  
        <span class="span1"><label class="checkbox"><input type="checkbox"  id="View-@View" name="txtCheck" class="regular-checkbox"><label for="View-@View"></label></label></span>                                      
    </div>       
</div>    ​


$('input[name="alcolumncheckbox"]').click(function () {
    alert(1);
    $("#rolegrid :checkbox").attr('checked', $(this).attr('checked'));
});​

can any one help me here please?

share|improve this question
Don't just link to fiddle, copy the code over to the question. – Cerbrus Nov 26 '12 at 10:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.