Hi,
I was wondering if there is some way to configure the Tables to be responsive. In Table.tpl.php, line 17, I see this code:
<div class="koolphp-table" id="<?php echo $this->name; ?>">
So I supose there is no way to configure it.
I can do it changing the line to:
<div class="table-responsive" id="<?php echo $this->name; ?>">
But it would be nice to have the posibility to configure it. Maybe something like:
<div class="koolphp-table <?php echo ($responsive) ? 'table-responsive' : '' ?>" id="<?php echo $this->name; ?>">
Thanks in advance. Your product is great