Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在链接到联系人的自定义模块中有一个相关字段。如果我为此字段 ( ) 激活排序,则使用联系人字段listviewdefs.php: sortable=>true可以正常排序。name
listviewdefs.php: sortable=>true
name
我怎么能按last_name然后排序first_name呢?
last_name
first_name
如果first_name两者last_name都是 db 字段,那么您可以像 name 字段 ( listviewdefs.php: sortable=>true) 一样在 listview 上应用排序。您只需要添加此代码
first_name' => array( 'query_type'=>'default'), 'last_name' => array( 'query_type'=>'default'),
在searchFields.php文件中。
searchFields.php