DHTMLX GRID support responsive page with Twitter Bootstarp

Is it possible to make the DHTMLX Grid to work with Twitter Bootstrap stylesheets for responsive webpage?
We have implemented the same with repeater control which works without any issue but have issues implementing the same with DHTMLX GRID.
I really appreciate early responses with solutions or hints.

based on bootstrap documentation…

...

so you need to add class=“table-responsive” to your container div. then through jquery you can assign to the table a class=“table”

ex:
HTML markup:

script:
/*
once you initialize dhtmlxgrid it will create a DIV with class = “xhdr” and within that div it will create TABLE containing you records.
*/
$(document).ready(function () {
$.ajaxSetup({ cache: false });
$(’.xhdr’).addClass(‘table-responsive’);
$(’#results table’).addClass(‘table’);
});