쇼핑몰관리자: #193 상품선택옵션 div id option_table 을 sit_option_frm 으로 변경

This commit is contained in:
whitedot
2013-05-22 14:23:26 +09:00
parent be9a2ddae5
commit 40c0d469c5
3 changed files with 13 additions and 13 deletions

View File

@ -388,7 +388,7 @@ $pg_anchor ='<ul class="anchor">
<button type="button" id="option_table_create" class="btn_frmline">옵션목록생성</button>
</div>
</div>
<div id="option_table"><?php include_once(G4_ADMIN_PATH.'/shop_admin/itemoption.php'); ?></div>
<div id="sit_option_frm"><?php include_once(G4_ADMIN_PATH.'/shop_admin/itemoption.php'); ?></div>
</td>
</tr>
<script>

View File

@ -16,13 +16,13 @@ if($it['it_id']) {
} else if(!empty($_POST)) {
$po_run = true;
$opt1_subject = strip_tags(trim($_POST['opt1_subject']));
$opt2_subject = strip_tags(trim($_POST['opt2_subject']));
$opt3_subject = strip_tags(trim($_POST['opt3_subject']));
$opt1_subject = trim($_POST['opt1_subject']);
$opt2_subject = trim($_POST['opt2_subject']);
$opt3_subject = trim($_POST['opt3_subject']);
$opt1_val = strip_tags(trim($_POST['opt1']));
$opt2_val = strip_tags(trim($_POST['opt2']));
$opt3_val = strip_tags(trim($_POST['opt3']));
$opt1_val = trim($_POST['opt1']);
$opt2_val = trim($_POST['opt2']);
$opt3_val = trim($_POST['opt3']);
$opt1_count = $opt2_count = $opt3_count = 0;
if($opt1_val) {
@ -44,7 +44,7 @@ if($it['it_id']) {
if($po_run) {
?>
<div id="option_table_frm">
<div id="sit_option_frm_wrapper">
<table>
<thead>
<tr>

View File

@ -170,11 +170,11 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right}
#sit_option {margin:0 0 10px;padding:10px 10px 0;border:1px solid #e9e9e9;background:#f7f7f7}
#sit_option .frm_input {background:#fff !important;color:#000}
#option_table_frm {margin:0 0 10px;height:auto !important;height:500px;max-height:500px;border:1px solid #484848;overflow-y:scroll}
#option_table_frm th {padding:5px 0;text-align:center}
#option_table .btn_list {margin:0 0 10px}
#option_table fieldset {padding:10px;border:1px solid #e9e9e9;background:#f7f7f7;text-align:center}
#option_table fieldset .frm_input {margin:0 10px 0 5px;background:#fff !important;color:#000}
#sit_option_frm #sit_option_frm_wrapper {margin:0 0 10px;height:auto !important;height:500px;max-height:500px;border:1px solid #484848;overflow-y:scroll}
#sit_option_frm #sit_option_frm_wrapper th {padding:5px 0;text-align:center}
#sit_option_frm .btn_list {margin:0 0 10px}
#sit_option_frm fieldset {padding:10px;border:1px solid #e9e9e9;background:#f7f7f7;text-align:center}
#sit_option_frm fieldset .frm_input {margin:0 10px 0 5px;background:#fff !important;color:#000}
/* 상품문의 */
.sit_qa_subject {width:300px}