First Name | Last Name | Status |
---|---|---|
Isidra | Boudreaux | Active |
Job Title: Traffic Court Referee DOB: 22 Jun 1972 | ||
Shona | Woldt | Disabled |
Granville | Leonardo | Suspended |
Easer | Dragoo | Active |
Maple | Halladay | Suspended |
Maxine | Woldt | Disabled |
Lorraine | Mcgaughy | Disabled |
Lizzee | Goodlow | Suspended |
Judi | Badgett | Active |
Lauri | Hyland | Suspended |
Trigger the footable_expand_first_row
event on the table to force the first expandable row to expand:
$('table').trigger('footable_expand_first_row');
Then make a slight change by binding to the footable_breakpoint
event, so that you force the first row to expand when a breakpoint is hit:
$('table').bind('footable_breakpoint', function() { $('table').trigger('footable_expand_first_row'); });