묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
또 다시 질문 드립니다 ㅜㅜ (첨부파일 문제)
2011.12.07 17:16
첨부파일을 클릭했을때 보통 다운로드가 되어지는데
그렇지 않고 (예를 들어 첨부파일이 이미지인 경우) 그걸 새창으로 바로 띄우게 하는 법 있을까요?
답변 부탁 드립니다.
댓글 2
-
송동우
2011.12.07 23:22
-
숲슷하
2011.12.08 05:28
정말 감사드립니다. 한방에 해결 됐네요 ^^ 전 사실 <a href="#" onClick="window.open('{getUrl('')}{$file->uploaded_filename}','','width=700, height=600, location=no, scrollbars=yes, status=no')">
이 부문만 필요 했던건데 더 자세한 설명 해주셔서 정말 많이 배우고 갑니다.
행복한 연말 보내세요.
어떤 것을 사용하는지 알 수가 없어서
1.4.5.10 / board 1.3.1 / xe_official 게시판 스킨 사용을 기준으로 설명합니다
xe - modules - board - skins - xe_official - view_document.html 열고
line 95 쯤에
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} <span class="bubble">[File Size:{FileHandler::filesize($file->file_size)}/Download:{number_format($file->download_count)}]</span></a></li>
이것을
<!--@ if(preg_match("/\.(jpg|gif|jpeg|png)$/i", $file->source_filename))-->
<li><a href="#" onClick="window.open('{getUrl('')}{$file->uploaded_filename}','','width=700, height=600, location=no, scrollbars=yes, status=no')">{$file->source_filename} <span class="bubble">[File Size:{FileHandler::filesize($file->file_size)}/Download:{number_format($file->download_count)}]</span></a></li>
<!--@ else-->
<li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} <span class="bubble">[File Size:{FileHandler::filesize($file->file_size)}/Download:{number_format($file->download_count)}]</span></a></li>
<!--@ end-->
이것으로 수정
붉은 색 파일확장자는 원하는 대로 수정
파란 색 속성은 원하는 대로 수정