In a table with some rows hidden, I want to get the next visible row, if one exists. This will do the job:

row = $(selectedRow).nextAll(':visible');
if ($(row).length > 0)
    selectedRow = row;

but it is very slow when many rows follow the selected row. A scripted approach is:

var row = $(selectedRow).next();
while ($(row).length > 0 && !$(row).is(':visible'))
    row = $(row).next();
if ($(row).length > 0)
    selectedRow = row;

This is much faster, but there's got to be an elegant all-jQuery approach I can use.

link|improve this question
feedback

2 Answers

Why are you using .nextAll if you just want one row?

I think that if you replace

row = $(selectedRow).nextAll(':visible');

with

row = $(selectedRow).nextUntil(':visible').next();

you'll get the speed improvement you're looking for.

link|improve this answer
Thanks for the reply. The problem is $(selectedRow).next(':visible') first applies .next() and then gives me that next row if it is visible. If it is not visible, I get nothing. – Marshall Morrise Dec 13 '11 at 20:20
Updated answer. – Blazemonger Dec 13 '11 at 20:26
Thanks for taking the time to answer. Didn't know about nextUntil(). I tried what you suggest, but it didn't work for me because nextUntil() returns an empty set if there are no non-visible rows between the selected row and the next visible row, and the .next seems to be applied to that empty set. But your guidance brought me to something better than what I had, which I'll post as an answer to my own question. – Marshall Morrise Dec 14 '11 at 18:34
feedback

Based on the helpful suggestion from mblase75, here is the most elegant solution I've found:

var row = $(selectedRow).next(':visible');

if ($(row).length == 0)
    row = $(selectedRow).nextUntil(':visible').last().next();

if ($(row).length > 0)
    selectedRow = row;

Often (in my case), the table isn't filtered, so the next row is visible much of the time. When it is not, nextUntil() yields a non-empty set of non-visible rows. Selecting the last row in that set and then the next row following it gives the next visible row in the table, if there is one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.