묻고답하기

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 남기남
쿠드반지루엣 관리자ID 로그인 시도시 '존재하지 않는 회원입니다' ... file  
designslam xe마켓에서 카메론스타일리쉬 구매를 했는데, [4] 2015.04.16 by 키스투엑스이
제제 회원아이디삭제시 기존 게시물도 삭제 되나요? [2] 2014.03.20 by 투씨
루팡쿠팡 html을 사용하여 유튜브 동영상을 올릴때, 게시판내 사이즈를 넘어서는 현상.. [12] 2014.03.20 by DynamicLaser
6869994 아이디를 한글로 받을 수 있나요? [1] 2014.03.20 by 6869994
moonsoo 트래픽 초과가 되는건 업로드 다운로드 모두 포함인가요? [2] 2014.03.20 by moonsoo
1ki txt파일을 출력하는 소스  
KrteamENT Font Awesome 문의 [2] 2014.03.20 by KrteamENT
gu xe 외부페이지 캐싱 시간 설정 질문  
Bayo3523 요청 기능이 없다는 메시지, 수정 위치 좀 알려주세요 ㅜㅜ [2] file 2014.03.20 by Bayo3523
생컨 최신글 모듈에 하이퍼링크 거는법이 궁금해요. [4] file 2014.03.20 by 생컨
상큼하게 주기적인 백업 방법이 어떤게 있나요? [4] 2014.03.20 by 핸들이막뽑혀
정도길 게시판 목록을 추가하고 싶습니다 [1] 2014.03.21 by 투씨
sirisic 가입 폼 관리에서 수정을 했는데 반영이 안되네요 ㅜ.ㅜ file  
아리아빠1 이부분에 이미지나.. 글씨를 넣을수 있을까요? [9] file 2014.03.21 by teguh100
nado0124 레이아웃에 PC화면보기, 모바일 화면보기 링크 거는 법 알고 싶습니다. [6] file 2014.03.21 by nado0124
아웅졸려라 게시판 하단에 현재 읽는 글의 전후글을 삽입하고 싶습니다. [2] 2014.03.21 by teguh100
Lemon Tree 쿡래빗 레이아웃, 위젯페이지에서 제일 마지막 최신글보기가 반복 [1] file 2014.03.21 by 숭숭군
xe초보자 다들 폰트 뭐 쓰시나요? [14] 2014.03.21 by 숭숭군
졸라맨 쪽지보내기창 수정문의 [1] 2014.03.21 by 졸라맨
리키한 브라우져 타이틀을 변경하고 싶은데 설정하는 곳이 어디있나요? [1] 2014.03.21 by 포도주스
안드로이더스스 제로보드5 가 xe 아닌가요?? [3] 2014.03.21 by KrteamENT
졸라맨 회원정보보기에 메뉴 추가하는 방법 [1] 2014.03.21 by BJ람보
롤롤롤롤 카페24 쇼핑몰과 xe의 조합.. [2] 2014.03.21 by 롤롤롤롤
XE모듈 우측 배너 광고 질문 합니다  
큰성565 부트스트랩 사용중인데, 안드로이드 브라우져에서 메뉴가 안나오네요.. [1] 2014.03.21 by KrteamENT
i지니i 새글알림 애드온이요, [26] 2014.03.21 by 양냥양
코멧 최근게시물 위젯에서 특정확장변수의 값이 있는 게시물만 출력 [2] 2014.03.21 by 코멧
GAIA100 contact 게시판 및 사용자정의 문의 file  
메이커즈마커 mysql 에서 게시판 DB복구방법...어떻게 하죠 [2] file 2014.03.21 by 메이커즈마커