You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added another 'fix' too. If I have a blank row in my table (intentionally) I do not want the header key in my stacked table. So I put a class on the <tr> like so <tr class="blankkey">:
Then after $table.find('>tbody>tr').each(function() {
I add var trclassname = $(this).attr('class');
and i change this line: if ($topRow.find('>td,>th').eq(cellIndex).html()){
to this if ($topRow.find('>td,>th').eq(cellIndex).html() && trclassname != "blankkey"){
Hi.
Is there a way to rebind cardtable?
On initial load I bind like so:
$('#searchresults').cardtable();
And on subsequent paging, I call the same again:
$('#searchresults').cardtable();
But the cardtable doesn't update the 'hidden' table? Any advice please?
The text was updated successfully, but these errors were encountered: