I am working on customizing the style of my component. It would be extremely helpful if you could add classes to the <div> tags for the various bricks.
As it stands, there is no easy way for me to style the div containing the filters using css, or just the filter widgets themselves without affecting other elements on the page. (example of filters below) I could add them myself, but then I lose some extensibility - I would need to create forked views for every one of my tables (a lot) and update them if I made changes to my component in cook, sort of defeating the point of forking.
Adding classes to the <div> tags for toolbar, grid, and pagination as well would be ++. Thanks.
<div>
<!-- BRICK : filters -->
<div class="pull-left">
<?php echo $this->filters['filter_facility']->input;?>
</div>
<div class="pull-left">
<?php echo $this->filters['filter_position']->input;?>
</div>
<div class="pull-right">
<?php echo $this->filters['limit']->input;?>
</div>
<div class="pull-right">
<?php echo $this->filters['directionTable']->input;?>
</div>
<div class="pull-right">
<?php echo $this->filters['sortTable']->input;?>
</div>
<div class="clearfix"></div>
<div class="pull-right">
<?php echo $this->filters['search_search_name']->input;?>
</div>
</div>