Getting all checkbox ids in all pages
Getting all checkbox ids in all pages
I have 100 records in My table.Each page have 10 records.Each row have a checkbox.I am selecting a some check boxes in Every page with help of next and previous buttons.When i clicking the button I am getting the current page check box ids only.Is possible to get all selected check box values? Please post any code.
This discussion has been closed.
Replies
[code]
table.$('input:checked')
[/code]
will get all checked input boxes, across all pages.
Allan