Getting all checkbox ids in all pages

Getting all checkbox ids in all pages

sivaec88sivaec88 Posts: 6Questions: 0Answers: 0
edited March 2013 in General
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.

Replies

  • allanallan Posts: 63,519Questions: 1Answers: 10,473 Site admin
    Use the $ of fnGetNodes API methods. For example:

    [code]
    table.$('input:checked')
    [/code]

    will get all checked input boxes, across all pages.

    Allan
This discussion has been closed.