Because fuelux is an extension of bootstrap, I first tried to add the 'table-striped' class to the table by targetting the table as a tag and I also tried grabbing the class of the table, which is .table:
$('table').addClass('table-striped');
neither worked, so I tried the full path used by fuelux:
$('.fuelux .repeater[data-viewtype="list"] .repeater-canvas .repeater-list table').addClass('table-striped');
No luck. The table it self is created dynamically by the fuelux script, so I'm not sure how to reference it.
Looking through the docs, it looks like list_columnRendered() function may help, but I'm not sure what to reference with it. I'm thinking I can use list_columnRendered(helpers.item) to target the table cells (td), but I think this would add inline styling, which I like to avoid if possible.
Preferably I would add the 'table-striped' class to the table tag. Is there a way to target js created tags?