묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
제로보드 투표스킨 변경
2014.12.10 09:14
안녕하세요
제로보드 투표스킨 변경을 원합니다..
일단 투표를 하면 결과를 바로 볼 수 없고 공개된 날짜에 볼 수 있도록하려고해요
그래서 투표를 해도 결과로 넘어가지 않도록 하려하고
경고창을 띄우고 싶은데..
지금한 방법이 스킨에 result.html의 이름을 변경하니까 결과를 볼 수 없고 나중에 돌려놓으니
결과를 볼 수 있더라구요,..
또. 투표를 2번다시 할 수 없더라구요 핸드폰으로 접속해서 확인하려고 하니까 투표결과창만뜨고 투표는 못하고
투표를 하고 뒤로가기나 경고창을 띄우는 소스를 어떻게 변경할 수 있을까요
부탁드리겠습니다..
아래는 form에 적힌양식입니다.
<!--@if(__DEBUG__)-->
<load target="css/poll.css" />
<load target="../../tpl/js/poll.js" />
<!--@else-->
<load target="css/poll.min.css" />
<load target="../../tpl/js/poll.min.js" />
<!--@end-->
<script>
var poll_alert_lang = "{$lang->msg_check_poll_item}";
</script>
<div id="poll_{$poll->poll_srl}" style="{$poll->style}">
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/poll/skins/default/form/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="poll" action="./" method="post" onsubmit="return doPoll(this)">
<input type="hidden" name="module" value="poll" />
<input type="hidden" name="act" value="procPoll" />
<input type="hidden" name="poll_srl" value="{$poll->poll_srl}" />
<input type="hidden" name="poll_srl_indexes" value="" />
<input type="hidden" name="skin" value="{$skin}" />
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<input type="hidden" name="xe_validator_id" value="modules/poll/skins/default/form/1" />
<table cellspacing="0" class="poll_table">
<col width="7" />
<col />
<col width="7" />
<tr class="cap">
<td><img src="./images/lh.png" alt="lh" width="7" height="7" /></td>
<td class="h"><img src="./images/blank.gif" height="7" alt="blank" /></td>
<td><img src="./images/rh.png" alt="rh" width="7" height="7" /></td>
</tr>
<tr>
<td class="title" colspan="3">
{$lang->poll_stop_date}: <strong>{zdate($poll->stop_date, "Y-m-d")}</strong>
</td>
</tr>
<tr>
<td class="l"><img src="./images/blank.gif" height="7" alt="blank" /></td>
<td class="poll_content">
<!--@foreach($poll->poll as $poll_srl_index => $val)-->
<input type="hidden" name="checkcount_{$poll_srl_index}" value="{$val->checkcount}" />
<div class="title">A : {$val->title}</div>
<!--@if($val->checkcount>1)-->
<div class="checkcount">
{$lang->poll_checkcount} : {$val->checkcount}
</div>
<!--@end-->
{@ $_key = 0}
<!--@foreach($val->item as $item_srl => $item)-->
{@$_idx = $poll->poll_srl.'_'.$poll_srl_index.'_'.$item_srl}
<div class="item <!--@if($_key==count($val->item)-1)-->noborder<!--@end-->">
<!--@if($val->checkcount>1)-->
<input type="checkbox" name="item_{$poll->poll_srl}_{$poll_srl_index}" value="{$item->poll_item_srl}" id="item_{$item->poll_item_srl}" />
<!--@else-->
<input type="radio" name="item_{$poll->poll_srl}_{$poll_srl_index}" value="{$item->poll_item_srl}" id="item_{$item->poll_item_srl}" />
<!--@end-->
<label for="item_{$item->poll_item_srl}">{$item->title}</label>
</div>
{@ $_key++}
<!--@end-->
<!--@end-->
</td>
<td class="r"><img src="./images/blank.gif" height="7" alt="blank" /></td>
</tr>
<tr>
<td colspan="3" class="poll_button">
<div>
<input type="button" value="{$lang->cmd_view_result}" class="btn poll_button _poll_result _srl_{$poll->poll_srl} _skin_{$skin}" />
<input type="submit" value="{$lang->cmd_apply_poll}" class="btn poll_button" />
</div>
</td>
</tr>
<tr class="cap">
<td class="lb" ><img src="./images/lb.png" alt="lb" width="7" height="7" /></td>
<td class="b"><img src="./images/blank.gif" alt="blank" /></td>
<td class="rb" ><img src="./images/rb.png" alt="rb" width="7" height="7" /></td>
</tr>
</table>
</form>
</div>