묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
첨부파일 리스트 형식 변경
2016.12.30 07:42
게시판은 1.7 버전을 사용합니다.
아래 소스는 첨부파일 관련 부분입니다.
<div cond="$oDocument->hasUploadedFiles()" class="fileList">
<button type="button" class="toggleFile" onclick="jQuery(this).next('ul.files').toggle();">{$lang->uploaded_file} [{$oDocument->get('uploaded_count')}]</button>
<ul class="files">
<li loop="$oDocument->getUploadedFiles()=>$key,$file"><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} <span class="fileSize">[File Size:{FileHandler::filesize($file->file_size)}/Download:{number_format($file->download_count)}]</span></a></li>
</ul>
첨부파일 처음부터 펼처지게 할수 있나요?
그리고 첨부파일을 세로로 나열하지 않고 아래처럼 가로로 나열하려면 어떻게 해야 되나요?
단순히 CSS로만 말씀드리면 .files li { display:inline-block; } 이라고 CSS에 적용해 보시면 붙어서 나옵니다.
그리고 처음부터 펼처지는것도
jQuery(document).ready(function() {
jQuery(this).next('ul.files').toggle();
});
라고 게시판 footer 파일등에 삽입하시면 되지않을까요?