• Fabrik V4.4.1 is now available.

    This version corrects the Admin issue introduced by V4.4. V4.4.1 is available through the Joomla Updater or for download through your My Downloads area of our website.

    Turns out a code change intended for our 5.0dev branch inadvertantly got pushed to the 4.x branch (by me, duh!). The javascript structure in 5.0 will change considerably and part of that change took effect with the inadvertant code change.

    We have reverted the code change and released 4.4.1. V4.4 has been retracted.

    Sorry for any inconvenience.

  • A new version of Full Calendar is now available.

    See the details here

Display List Filter Horizontally

  • Views Views: 12,380
  • Last updated Last updated:

Navigation

  • If you are using a default Fabrik template, first clone it by copying its folder in /components/com_fabrik/views/list/tmpl/ and renaming it.

    Then edit its default_filter.php template and replace its code with the following code:
    PHP:
    <div class="fabrikFilterContainer">
    <?php if ($this->filterMode === 3 || $this->filterMode === 4) {?>
    <div class="searchall">
    <ul class="fabrik_action">
    <?php if (array_key_exists('all', $this->filters)) {
    echo '<li>' . $this->filters['all']->element . '</li>';
    }?>
    <?php if ($this->filter_action != 'onchange') {?>
    <li>
    <input type="button" class="fabrik_filter_submit button" value="<?php echo JText::_('COM_FABRIK_GO');?>" name="filter" >
    </li>
    <?php } ?>
    </ul>
    </div>
    <?php } else { ?>
    <table class="filtertable fabrikList">
    <thead>
    <tr class="fabrik___heading">
    <?php foreach ($this->filters as $filter) {?>
    <th><?php echo $filter->label;?></th>
    <?php }?>
    </tr>
    </thead>
    <tbody>
    <tr class="fabrik_row oddRow1">
    <?php
    $c = 0;
    foreach ($this->filters as $filter) {
    $required = $filter->required == 1 ? ' notempty' : ""; ?>
    <td class="<?php echo $required?>">
    <?php echo $filter->element;?>
    </td>
    <?php $c ++;
    } ?>
    </tr>
    </tbody>
    <tfoot>
    <?php if ($this->filter_action != 'onchange') {?>
    <tr class="fabrik_row oddRow0">
    <td colspan="<?php echo count($this->filters)?>" style="text-align:right;">
    <input type="button" class="fabrik_filter_submit button" value="<?php echo JText::_('COM_FABRIK_GO');?>"
    name="filter" />
    </td>
    </tr>
    <?php }?>
    </tfoot>
    </table>
    <?php }?>
    </div>
    Finally edit your list and select your new template.
Back
Top