how to bind selected users

Posted by kumar on Stack Overflow See other posts from Stack Overflow or by kumar
Published on 2010-04-30T17:54:23Z Indexed on 2010/04/30 17:57 UTC
Read the original article Hit count: 401

Filed under:

I used this code to select top 5 users from jquery grid on button click..

$('#myButton').click(function() {
    $('#Grid input[type=checkbox]:lt(5)').attr('checked','checked');
});

its working fyn if I click the button its checking the check boxes..

my work is after checkin any box if I click other button send the selected user need to go to other page.if not pop up message to selct atleast one user..

the above code I implemented its checking fyn but if i click send its saying pop up mesage

is that do i need to bind again to the grid? or what do i need to do?

thanks

© Stack Overflow or respective owner

Related posts about jQuery