I have a Data View in an Xpage application which is using the Bootstrap theme. I started to use a View, but could never get the pagers lines up, and the data view is working better.
But I do not understand where to put my table class css. For example, if I want a stripped table I enter "table table-striped" in the styleClass of the view (or maybe it is the dataStyleClass). If I do that in the styleClass of the data view, I do not get strips.
I tried the suggestion from Mark below, but something is not working. I added a script call and used the id of the tableview. It already has a class of "cleearfix table" on it.
I have added Chrome's web inspector to show what is going on.
$(document).ready( function() { } )
(just as done a few lines earlier in your screenshot). If you do this it still won't work because of the second issue: the jQuery selector you're using is wrong: it looks for a table with thedataView1_ajax
class. Change it to the one in my answer and it will find the table. – Mark Leusink