Sort By Foreign Key or Custom Column in Symfony Admin Generator use propel
淡淡烟草味
淡淡烟草味 2017-05-16 16:46:10
0
1
554

Sort By Foreign Key or Custom Column in Symfony Admin Generator use propel. How can I enable the custom columns on the admin list page to also have sorting functions.

淡淡烟草味
淡淡烟草味

reply all(1)
Ty80

自己找到方法了,分享一下。
Sorting On A Virtual Column
=================================
The new theme provides an easy way to make virtual columns and foreign key columns sortable in the list view. Just declare the corresponding fields with is_sortable to true, and the generated module will look for an orderByXXX() method in the generated query. For instance, to allow a book list to be sortable on the author name:

Then the generator will try to execute BookQuery::orderByAuthor() whenever the user clicks on the Author header to sort on this column. The method must be implemented as follows:

You can override the default sorting method name for a field by setting the sort_method parameter:

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!