Need to access accordion hidden rows
Need to access accordion hidden rows
jlivingston
Posts: 13Questions: 0Answers: 0
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.