|
|
|
@ -82,7 +82,7 @@
|
|
|
|
|
<th style="width:200px">항목명</th>
|
|
|
|
|
<th style="width:110px">바이트수</th>
|
|
|
|
|
<th style="width:140px">공백문자방향</th>
|
|
|
|
|
<th style="width:140px">포맷팅</th>
|
|
|
|
|
<th style="width:350px">포맷팅</th>
|
|
|
|
|
<th class="dummy-th"></th>
|
|
|
|
|
</tr>
|
|
|
|
|
</template>
|
|
|
|
@ -114,7 +114,7 @@
|
|
|
|
|
<button type="button" class="btn btn-xs btn-outline-dark h-px-25 px-1">▶</button>
|
|
|
|
|
</td>
|
|
|
|
|
<td data-col="formatting" class="text-center">
|
|
|
|
|
<input type="text" class="form-control w-px-100" />
|
|
|
|
|
<input type="text" class="form-control w-px-300" />
|
|
|
|
|
</td>
|
|
|
|
|
<td class="dummy-td"></td>
|
|
|
|
|
</tr>
|
|
|
|
@ -214,14 +214,12 @@ $(document).ready(function(){
|
|
|
|
|
var lastTr = $("#tbody--${pageName}").find("tr").last()[0];
|
|
|
|
|
|
|
|
|
|
$($P.fnGetElement(lastTr,"artclNm")).set(data.ARTCL_NM);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$($P.fnGetElement(lastTr,"artclSz"))
|
|
|
|
|
.set(!isEmpty(data.ARTCL_SZ) ? data.ARTCL_SZ : 0);
|
|
|
|
|
|
|
|
|
|
.set(!isEmpty(data.ARTCL_SZ) ? data.ARTCL_SZ : 1);
|
|
|
|
|
$($P.fnGetElement(lastTr,"paddingDirection"))
|
|
|
|
|
.set(!isEmpty(data.PADDING_DIRECTION) ? data.PADDING_DIRECTION : "left");
|
|
|
|
|
|
|
|
|
|
$($P.fnGetElement(lastTr,"formatting"))
|
|
|
|
|
.set(!isEmpty(data.FORMATTING) ? data.FORMATTING : "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$("#tbody--${pageName}").find("tr").each(function(){
|
|
|
|
|