Need to access accordion hidden rows
Need to access accordion hidden rows
![jlivingston](https://secure.gravatar.com/avatar/bcdb2da53e0c75b302e57710773e6d68/?default=https%3A%2F%2Fvanillicon.com%2Fbcdb2da53e0c75b302e57710773e6d68_200.png&rating=g&size=120)
I currently have a table that uses the accordion feature. If 200 rows load only 10 are shown at a time. Each row has a checkbox so a user can select the row. Works great except when a user selects some rows, paginates to a new page and then selects some more rows. If I paginate back and forth I see all the row are still selected. When I go to find out how many rows have been selected by code only returns the ones that are visible.
This is the line of code I currently use to get me a list of selected rows:
var selectedLogIds = $('#wellList .pdsSubTable').find('input:checked').map(function(i, item) { return item.value; }).get();
Is there a setting somewhere to allow this to return even the selected rows that are not actively being displayed?
This is the line of code I currently use to get me a list of selected rows:
var selectedLogIds = $('#wellList .pdsSubTable').find('input:checked').map(function(i, item) { return item.value; }).get();
Is there a setting somewhere to allow this to return even the selected rows that are not actively being displayed?
This discussion has been closed.