How to add sortable columns in a Joomla component (table), both ASC and DESC with an arrow(如何在 Joomla 组件(表)中添加可排序的列,ASC 和 DESC 都带有箭头)
问题描述
我已经完成了教程,http://docs.joomla.org/Adding_sortable_columns_to_a_table_in_a_component>
当我按照那里的所有说明进行操作后,我能够对列进行排序,但只有 ASC 方向并且没有箭头指示符.
有谁知道如何同时启用 ASC 和 DESC 以及箭头图形指示器?
非常感谢.
在文档中它是这样说的:ASC 就在那里.
公共函数 getListQuery() {$db = JFactory::getDbo();$query = $db->getQuery(true);//...$query->order($db->escape($this->getState('list.ordering', 'default_sort_column')).' '.$db->escape($this->getState('list.direction', 'ASC')));返回 $query;}I have followed through the tutorial, http://docs.joomla.org/Adding_sortable_columns_to_a_table_in_a_component
When I have followed all instructions there, I was able sort the columns, but with only ASC direction and there is no arrow indicator.
Does anyone happen to know how to enable both ASC and DESC as well as arrow graphic indicator?
Thanks a lot.
In the documentation it says something like below: ASC is right there.
public function getListQuery() {
$db = JFactory::getDbo();
$query = $db->getQuery(true);
// ...
$query->order($db->escape($this->getState('list.ordering', 'default_sort_column')).' '.
$db->escape($this->getState('list.direction', 'ASC')));
return $query;
}
这篇关于如何在 Joomla 组件(表)中添加可排序的列,ASC 和 DESC 都带有箭头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Joomla 组件(表)中添加可排序的列,ASC 和 DESC 都带有箭头
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- Laravel 仓库 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
