일괄 메뉴별 화면 상의 비정상적인 작동 및 오류 부분 수정
This commit is contained in:
@@ -57,13 +57,13 @@
|
||||
{ name : 'MSGCLMNVAL' , align:'center' , width:40 },
|
||||
{ name : 'THISMSGCLMNUSEYN' , align:'center' , width:40 ,
|
||||
formatter: function (cellvalue) {
|
||||
if ( !cellvalue ) {
|
||||
return '<span style="color:red">사용안함</span>';
|
||||
} else if ( cellvalue ) {
|
||||
return '사용함';
|
||||
} else {
|
||||
return cellvalue;
|
||||
}
|
||||
if ( cellvalue == '0' ) {
|
||||
return '<span style="color:red">사용안함</span>';
|
||||
} else if ( cellvalue == '1' ) {
|
||||
return '사용';
|
||||
} else {
|
||||
return cellvalue;
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
@@ -77,8 +77,8 @@
|
||||
height: $("#container").height(),
|
||||
autowidth: true,
|
||||
viewrecords: true,
|
||||
multiselect: true,
|
||||
multiboxonly: false,
|
||||
/* multiselect: true,
|
||||
multiboxonly: false, */
|
||||
rowList : eval('[${rmsDefaultRowList}]'),
|
||||
gridComplete:function (d){
|
||||
var colModel = $(this).getGridParam("colModel");
|
||||
@@ -396,7 +396,7 @@
|
||||
<!-- <img src="<c:url value="/img/btn_clone_prod.png"/>" alt="" id="btn_clone_prod" level="W" /> -->
|
||||
<!-- <img src="<c:url value="/img/btn_clone_dev.png"/>" alt="" id="btn_clone_dev" level="W" /> -->
|
||||
<img src="<c:url value="/img/btn_new.png"/>" alt="" id="btn_new" level="W" />
|
||||
<img src="<c:url value="/img/btn_delete.png"/>" alt="" id="btn_delete" level="W" />
|
||||
<%-- <img src="<c:url value="/img/btn_delete.png"/>" alt="" id="btn_delete" level="W" /> --%>
|
||||
<img src="<c:url value="/img/btn_search.png"/>" alt="" id="btn_search" level="R" />
|
||||
|
||||
</div>
|
||||
@@ -406,12 +406,12 @@
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="width:150px;">메시지항목 구분명</th>
|
||||
<td style="width:20%;"><input type="text" name="searchMsgItemDsticName" value="${param.searchMsgItemDsticName}"></td>
|
||||
<th>메시지 컬럼명</th>
|
||||
<td><input type="text" name="searchMsgItemDsticName" value="${param.searchMsgItemDsticName}"></td>
|
||||
<th style="width:150px;">메시지 컬럼명</th>
|
||||
<td><input type="text" name="searchMsgClmnName" value="${param.searchMsgClmnName}"></td>
|
||||
<th>복제 메시지항목 구분명</th>
|
||||
<%-- <th>복제 메시지항목 구분명</th>
|
||||
<td><input type="text" name="cloneMsgItemDsticName" style="display:inline-block; width:calc(100% - 70px);">
|
||||
<img id="btn_clone" src="<c:url value="/img/btn_clone1.png" />" level="W" status="LIST" class="btn_img"/></td>
|
||||
<img id="btn_clone" src="<c:url value="/img/btn_clone1.png" />" level="W" status="LIST" class="btn_img"/></td> --%>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user