按多列排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按多列排序相关的知识,希望对你有一定的参考价值。
Use instead of standard "sql\_tablesort()" function. Handles multiple "sort" in $header, but the arrow will be only on last sorted column. This can be handled with rewriting theme_table, for example.
$sorter = ''; foreach($header AS $field) { $tablesort[] = db_escape_string($field['field']) . ' ' . drupal_strtoupper(db_escape_string($field['sort'])); } } } return $sorter; }
以上是关于按多列排序的主要内容,如果未能解决你的问题,请参考以下文章