묻고답하기

Conact us를 이용해서 게시판에 등록시키는 것을 하고 있습니다.

게시판 리스트에 제목에는 들어가는데 전화번호나, 시술종류는 리스트에는 나타나지않고
내용에 들어가 버립니다.

제 생각에는 
 f.content.value += '<p><b>Mobile</b><br /><br />' + mobile_phone_arr.join('-') + '</p>';
 f.content.value += '<p><b>Message</b><br /><br />' + f.inquiry.value + '</p>';

이 소스를 수정해야할 것 같은데 초보라 어떻게 손을 대야 할지 모르겠습니다.

리스트상의 전화번호와 시술종류는 사용자정의(확장변수)로 만들었습니다.

아시는 분이 있으시면 답변부탁드립니다.


미리 감사드립니다.

22.gif

게시판 리스트에 뿌려주는소스
=================================================================================================

function submit_request(f) {
    f.nick_name.value = f.user_name.value;
    f.title.value = f.user_name.value + ' 님 문의접수';
    var mobile_phone_arr = new Array();
    for (i = 0; i < f.mobile_phone.length; i++) {
        mobile_phone_arr[mobile_phone_arr.length] = f.mobile_phone[i].value;
    }
    f.content.value = '<p><b>E-mail</b><br /><br />' + f.email_address.value + '</p>';
    f.content.value += '<p><b>Mobile</b><br /><br />' + mobile_phone_arr.join('-') + '</p>';
    f.content.value += '<p><b>Message</b><br /><br />' + f.inquiry.value + '</p>';
    return procFilter(f, insert);
}

/* 글쓰기 작성후 */
function completeDocumentInserted(ret_obj) {
    jQuery('input:text,textarea','#contactus').attr('disabled','disabled');
    jQuery('input:image','#contactus').click(function() {
        alert('Already requested.');
        return false;
    });
    alert(ret_obj['message']);
    if (g_reload=='Y') {
        location.reload();
    }
}





게시판 리스트 소스
================================================================================================

<form action="./" method="get" class="boardListForm">
    <fieldset>
        <legend>List of Articles</legend>

        <table cellspacing="0" border="1" summary="List of Articles" class="boardList">
<thead>
<tr>
<!--// configure table theader -->
<!--@foreach($list_config as $key => $val)-->
<!--// if it is the default -->
<!--@if($val->idx == -1)-->
<!--// display the contents based on type -->
<!--@if($val->type == 'no')-->
<th scope="col">{$lang->no}</th>
<!--@elseif($val->type == 'title')-->
       <th scope="col" class="title" cond="!$module_info->title_name">{$lang->title}</th>
       <th scope="col" class="title" cond="$module_info->title_name">{$module_info->title_name}</th>
<!--@elseif($val->type == 'regdate')-->
<th scope="col"><a href="{getUrl('sort_index','regdate','order_type',$order_type)}">{$lang->date}<!--@if($sort_index=='regdate')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
<!--@elseif($val->type == 'last_update')-->
<th scope="col"><a href="{getUrl('sort_index','last_update','order_type',$order_type)}">{$lang->last_update}<!--@if($sort_index=='last_update')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
<!--@elseif($val->type == 'nick_name')-->
       <th scope="col" cond="!$module_info->writer_name">{$lang->writer}</th>
       <th scope="col" cond="$module_info->writer_name">{$module_info->writer_name}</th>
<!--@elseif($val->type == 'user_id')-->
<th scope="col">{$lang->user_id}</th>
<!--@elseif($val->type == 'user_name')-->
<th scope="col">{$lang->user_name}</th>
<!--@elseif($val->type == 'readed_count')-->
<th scope="col" class="reading"><a href="{getUrl('sort_index','readed_count','order_type',$order_type)}">{$lang->readed_count}<!--@if($sort_index=='readed_count')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
<!--@elseif($val->type == 'voted_count')-->
<th scope="col"><a href="{getUrl('sort_index','voted_count','order_type',$order_type)}">{$lang->voted_count}<!--@if($sort_index=='voted_count')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
<!--@elseif($val->type == 'blamed_count')-->
<th scope="col"><a href="{getUrl('sort_index','blamed_count','order_type',$order_type)}">{$lang->blamed_count}<!--@if($sort_index=='blamed_count')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
<!--@elseif($val->type == 'last_post')-->
                                <th scope="col"><a href="{getUrl('sort_index','last_update','order_type',$order_type)}">{$lang->last_post}<!--@if($sort_index=='last_update')--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
<!--@end-->
<!--// enable user-defined sorting variables -->
<!--@else-->
<th scope="col"><a href="{getUrl('sort_index', $val->eid, 'order_type', $order_type)}">{$val->name}<!--@if($sort_index == $val->eid)--><img src="./img/common/{$order_icon}" alt="sort" width="5" height="3" class="sort" /><!--@end--></a></th>
<!--@end-->
<!--@end-->
<!--@if($grant->manager)--><th scope="col" class="check"><input type="checkbox" onclick="XE.checkboxToggleAll({ doClick:true }); return false;" title="Check All" /></th><!--@end-->
</tr>
</thead>
<tbody>
<!--@if(!$document_list && !$notice_list)-->
<tr>
<td colspan="<!--@if($grant->manager)-->{count($list_config)+1}<!--@else-->{count($list_config)}<!--@end-->">
{$lang->no_documents}
</td>
</tr>
<!--@else-->
<!--@foreach($notice_list as $no => $document)-->
<tr class="notice">
<!--// configure table theader  -->
<!--@foreach($list_config as $key => $val)-->
<!--// if it is the default -->
<!--@if($val->idx == -1)-->
<!--// display the contents based on type -->
<!--@if($val->type == 'no')-->
<td class="notice"><!--@if($document_srl == $document->document_srl)-->»<!--@else-->{$lang->notice}<!--@end--></td>
<!--@elseif($val->type == 'title')-->
<td class="title">
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
{$document->printExtraImages(60*60*$module_info->duration_new)}
<!--@if($document->getCommentCount())-->
<a href="{getUrl('document_srl', $document->document_srl)}#comment"><span class="replyNum" title="Replies">[{$document->getCommentCount()}]</span></a>
<!--@end-->
<!--@if($document->getTrackbackCount())-->
<a href="{getUrl('document_srl', $document->document_srl)}#trackback"><span class="trackbackNum" title="Trackbacks">[{$document->getTrackbackCount()}]</span></a>
<!--@end-->
</td>
<!--@elseif($val->type == 'regdate')-->
<td class="date">{$document->getRegdate('Y-m-d')}</td>
<!--@elseif($val->type == 'last_update')-->
<td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td>
<!--@elseif($val->type == 'nick_name')-->
<td class="author">{$document->getNickName()}</a></td>
<!--@elseif($val->type == 'user_id')-->
<td class="author">{$document->getUserID()}</a></td>
<!--@elseif($val->type == 'user_name')-->
<td class="author">{$document->getUserName()}</a></td>
<!--@elseif($val->type == 'readed_count')-->
<td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):' '}</td>
<!--@elseif($val->type == 'voted_count')-->
<td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):' '}</td>
<!--@elseif($val->type == 'blamed_count')-->
<td class="recommend">{$document->get('blamed_count')!=0?$document->get('blamed_count'):' '}</td>
<!--@elseif($val->type == 'last_post')-->
                                <td class="lastReply">
                                    <!--@if((int)($document->get('comment_count'))>0)-->
                                        <a href="{$document->getPermanentUrl()}#comment" class="replyAnchor">{zdate($document->get('last_update'),'Y-m-d')} {zdate($document->get('last_update'),'H:i')}</a>
                                        <!--@if($document->get('last_updater'))-->
                                            <sub class="by">by</sub>
                                            {htmlspecialchars($document->get('last_updater'))}
                                        <!--@end-->
                                    <!--@else-->
                                         
                                    <!--@end-->
                                </td>
<!--@end-->
<!--// display the extra variables -->
<!--@else-->
<td>{$document->getExtraValueHTML($val->idx)} </td>
<!--@end-->
<!--@end-->
<!--@if($grant->manager)-->
<td class="check"><input type="checkbox" name="cart" value="{$document->document_srl}" title="Check this" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td>
<!--@end-->
</tr>
<!--@end-->
<!--@foreach($document_list as $no => $document)-->
<tr class="bg{($no+1)%2+1}">
<!--// configure table theader -->
<!--@foreach($list_config as $key => $val)-->
<!--// if it is the default -->
<!--@if($val->idx == -1)-->
<!--// display the contents based on type -->
<!--@if($val->type == 'no')-->
<td class="num"><!--@if($document_srl == $document->document_srl)-->»<!--@else-->{$no}<!--@end--></td>
<!--@elseif($val->type == 'title')-->
<td class="title">
<a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getTitle($module_info->subject_cut_size)}</a>
{$document->printExtraImages(60*60*$module_info->duration_new)}
<!--@if($document->getCommentCount())-->
<a href="{getUrl('document_srl', $document->document_srl)}#comment"><span class="replyNum" title="Replies">[{$document->getCommentCount()}]</span></a>
<!--@end-->
<!--@if($document->getTrackbackCount())-->
<a href="{getUrl('document_srl', $document->document_srl)}#trackback"><span class="trackbackNum" title="Trackbacks">[{$document->getTrackbackCount()}]</span></a>
<!--@end-->
</td>
<!--@elseif($val->type == 'nick_name')-->
<td class="author"><a href="#popup_menu_area" class="member_{$document->get('member_srl')}" onclick="return false">{$document->getNickName()}</a></td>
<!--@elseif($val->type == 'user_id')-->
<td class="author">{$document->getUserID()}</a></td>
<!--@elseif($val->type == 'user_name')-->
<td class="author">{$document->getUserName()}</a></td>
<!--@elseif($val->type == 'regdate')-->
<td class="date">{$document->getRegdate('Y-m-d')}</td>
<!--@elseif($val->type == 'last_update')-->
<td class="date">{zdate($document->get('last_update'),'Y-m-d H:i')}</td>
<!--@elseif($val->type == 'readed_count')-->
<td class="reading">{$document->get('readed_count')>0?$document->get('readed_count'):' '}</td>
<!--@elseif($val->type == 'voted_count')-->
<td class="recommend">{$document->get('voted_count')!=0?$document->get('voted_count'):' '}</td>
<!--@elseif($val->type == 'blamed_count')-->
<td class="recommend">{$document->get('blamed_count')!=0?$document->get('blamed_count'):' '}</td>
<!--@elseif($val->type == 'last_post')-->
                                <td class="lastReply">
                                    <!--@if((int)($document->get('comment_count'))>0)-->
                                        <a href="{$document->getPermanentUrl()}#comment" class="replyAnchor">{zdate($document->get('last_update'),'Y-m-d')} {zdate($document->get('last_update'),'H:i')}</a>
                                        <!--@if($document->get('last_updater'))-->
                                            <sub class="by">by</sub>
                                            {htmlspecialchars($document->get('last_updater'))}
                                        <!--@end-->
                                    <!--@else-->
                                         
                                    <!--@end-->
                                </td>
<!--@end-->
<!--// display the extra variables -->
<!--@else-->
<td><a href="{getUrl('document_srl',$document->document_srl, 'listStyle', $listStyle, 'cpage','')}">{$document->getExtraValueHTML($val->idx)}</a> </td>
<!--@end-->
<!--@end-->
<!--@if($grant->manager)--><td class="checkbox"><input type="checkbox" name="cart" value="{$document->document_srl}" title="Check this" onclick="doAddDocumentCart(this)" <!--@if($document->isCarted())-->checked="checked"<!--@end--> /></td><!--@end-->
</tr>
<!--@end-->
<!--@end-->
</tbody>
        </table>
    </fieldset>
</form>

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
XETheme [문의드립니다] 메뉴관련 file  
묵탱 레이아웃 적용 문의 [1] 2014.03.21 by sejin7940
xe초보자 포인트 세부화 하는법 아시는분 계신가요? [4] 2014.03.21 by sejin7940
오이군 사이트 문의드립니다. [1] 2014.03.21 by 주택바가지
zartin 모바일 편집하면 왜 화면이 검은색으로 나오죠? [2] file 2014.03.21 by zartin
TakeUrban 업데이트 에러 메세지  
차밍 스케치북 갤러리 게시판을 사용할 때 썸네일 질문입니다.  
생까는즐거움 XE 예전버전 어디서 다운받나요 [2] 2014.03.21 by 생까는즐거움
제제 1.4.1.1 -> 1.7.4로 코어 업데이트후 사이트메뉴편집이 안떠요. [3] 2014.03.21 by five
곰탕lol왕자 도메인..;;; 이거 어떻게 설정해야될까요 [1] 2014.03.21 by 곰탕lol왕자
아기나옹이 누리고 쇼핑몰 결제 설정을 현금으로 못하나요? [3] 2014.03.21 by 아기나옹이
sirisic 회원가입 항목 수정이 안되요 도와주세요 [2] 2014.03.21 by sirisic
BESETO 첨부파일이 있는 게시물을 이동시, 확장변수가 이동되지 않아요. [2] 2014.03.21 by GG
꿀댕이 [묻기] CAFE List 폰트 사이즈 키우는법 [3] file 2014.03.21 by 꿀댕이
GAIA100 레이아웃 미사용시 회원가입문제 [1] 2014.03.21 by pell
포도주스 사용자 정의 변경 도와주세요~ [2] 2014.03.21 by 포도주스
Lemon Tree 쿡래빗 레이아웃 "최신글보기"가 최하단에서 반복되는 문제 [4] file 2014.03.21 by pell
홍길동친구 게시판 관리 > 게시판 정보에 상단, 하단내용이 사라짐 file  
Lemon Tree 최신글 보기에 "썸네일 없이" 제목과 내용을 보이게 하려면 [2] file 2014.03.21 by Lemon Tree
lililiillililiil XE https 걸린 이미지 링크시 썸네일을 생성하지 못하는 현상  
오락실주인 XE 제작된 해외사이트 [3] 2014.03.21 by bangkoksnaps
메이커즈마커 mysql 에서 게시판 DB복구방법...어떻게 하죠 [2] file 2014.03.21 by 메이커즈마커
GAIA100 contact 게시판 및 사용자정의 문의 file  
코멧 최근게시물 위젯에서 특정확장변수의 값이 있는 게시물만 출력 [2] 2014.03.21 by 코멧
i지니i 새글알림 애드온이요, [26] 2014.03.21 by 양냥양
큰성565 부트스트랩 사용중인데, 안드로이드 브라우져에서 메뉴가 안나오네요.. [1] 2014.03.21 by KrteamENT
XE모듈 우측 배너 광고 질문 합니다  
롤롤롤롤 카페24 쇼핑몰과 xe의 조합.. [2] 2014.03.21 by 롤롤롤롤
졸라맨 회원정보보기에 메뉴 추가하는 방법 [1] 2014.03.21 by BJ람보
안드로이더스스 제로보드5 가 xe 아닌가요?? [3] 2014.03.21 by KrteamENT