2

编写了一个自定义后端组件,运行良好。仅允许一部分用户访问它,因此我从 Hathor 创建了一个修改过的模板,以消除我无法使用权​​限的所有内容。

发现分页不仅仅适用于 Hathor。我用 Bluestork 试了一下,效果很好。我还使用 Hathor(原始和未修改)和 Bluestork 测试了文章分页,并且都有效。也没有看到任何错误弹出。

什么可能导致我的组件中的分页无法与 Hathor 一起使用?

这是我用于分页的代码:

模型:

...other query stuff...
//Column ordering
    $orderCol = $this->getState('list.ordering');  //Ordering
    $orderDirn = $this->getState('list.direction'); //Direction

    if ($orderCol != '') {
        $query->order($db->getEscaped($orderCol.' '.$orderDirn));
    } //end column ordering

    return $query;
}

视图.html.php

public function display($tpl = null)
{
    $this->items = $this->get('Items');
    $this->pagination = $this->get('Pagination'); //getting this automatically and being assigned to the view
    $this->state = $this->get('State');  //for published state drop down

默认.php:

<input type="hidden" name="filter_order" value"<?php echo $listOrder; ?>" /> <!-- for sorting -->
<input type="hidden" name="filter_order_Dir" value"<?php echo $listDirn; ?>" /> <!-- for list direction -->

有人对可能发生的事情有任何想法吗?

4

2 回答 2

0

这可能发生在与表单“adminform”的冲突中,您有两个或没有,并且您的默认 Joomla 导航不起作用(上面的某些按钮也不起作用)

于 2013-01-22T16:14:27.313 回答
0

我最后比较了 Chrome 中的一些管理模板输出,发现有大量代码没有被拉入。它似乎与模式窗口有关,所以我在模板的 include 标题行下添加了这个:

<?php JHtml::_('behavior.modal'); ?>

我猜分页使用相同的 js 文件。不知道为什么它没有拉进来,也许是因为我限制了对太多后端的访问,它认为它没有被使用?

无论如何 - 固定!

于 2013-01-29T22:50:23.077 回答