묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
추천 인 나열 순서
2019.08.31 10:46
추천 인을 사용하고 있습니다.
추천 인 나열이 최근에 추천한 닉네임 순으로 정렬이 되고 있는데요
위 링크에서 반대로 순서를 바꾸고 싶습니다. 즉, 가장 먼저 추천한 회원이 제일 앞에 있고 다음 추천 인 순으로 정렬하고 싶은데요
어떠게 수정 하면 되나요? 감사합니다.
댓글 2
-
sejin7940
2019.08.31 14:09
-
홈런볼11
2019.08.31 23:01
<index var="sort_index" default="voted_log.regdate" order="desc" />
부분을 아래걸로 변경하세요
< index var="sort_index" default="voted_log.regdate" order="asc" /> 이것으로 간단히 해결했네요. 감사합니다.
getVotedMemberList.xml 쿼리가
정렬 순서 제어가 안 됩니다. ( 쿼리 자체에 아예 고정이 되어있어서 )
아예 쿼리를 새로 짜거나
아니면, modules/document/queries/getVotedMemberList.xml 에서
<index var="sort_index" default="voted_log.regdate" order="desc" />
부분을 아래걸로 변경하세요
<index var="sort_index" default="voted_log.regdate" order="asc" />