Merge branch 'jenkins_with_weblogic' of ssh://git@192.168.240.178:18081/eapim/eapim-admin.git into jenkins_with_weblogic
This commit is contained in:
@@ -513,7 +513,36 @@ function gridRendering(){
|
||||
colModel:[
|
||||
{ name : 'PRPTYGROUPNAME' , align:'left' , hidden: true },
|
||||
{ name : 'PRPTYNAME' , width: 70 , align:'left' },
|
||||
{ name : 'PRPTY2VAL' , width: 70 , align:'left' , title:false, editable: true, formatter:mltplFormatter, unformatter:mltplUnFormatter},
|
||||
{
|
||||
name : 'PRPTY2VAL',
|
||||
width: 70,
|
||||
align:'left',
|
||||
title:false,
|
||||
editable: true,
|
||||
formatter:mltplFormatter,
|
||||
unformatter:mltplUnFormatter,
|
||||
editoptions: {
|
||||
dataEvents: [
|
||||
{
|
||||
type: 'keydown',
|
||||
fn: function(e) {
|
||||
if (e.which === 13) {
|
||||
var val = $(this).val();
|
||||
$(this).val($.trim(val));
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'blur',
|
||||
fn: function(e) {
|
||||
var val = $(this).val();
|
||||
$(this).val($.trim(val));
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
// [여기까지 추가]
|
||||
},
|
||||
{ name : 'PRPTYDESC' , width: 300 , align:'left'},
|
||||
{ name : 'DMNKND' , hidden:true},
|
||||
{ name : 'DOMAINTYPE' , hidden:true, formatter:nullFormatter}
|
||||
@@ -942,6 +971,7 @@ $(document).ready(function() {
|
||||
|
||||
buttonControl(isDetail);
|
||||
titleControl(isDetail);
|
||||
|
||||
});
|
||||
|
||||
// clientManPopup.jsp에서 호출될 함수 (전역 스코프에 정의)
|
||||
|
||||
@@ -303,6 +303,12 @@
|
||||
return cellvalue;
|
||||
}
|
||||
|
||||
function trimFormatter(cellvalue, options, rowObject) {
|
||||
|
||||
return cellvalue ? String(cellvalue).trim() : '';
|
||||
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
console.log(roleString);
|
||||
|
||||
@@ -373,7 +379,7 @@
|
||||
{name: 'TRACKASISKEY1CTNT', hidden: true},
|
||||
{name: 'TRACKASISKEY2CTNT', hidden: true},
|
||||
|
||||
{name: 'EAISVCSERNO_TMP', align: 'left', width: '220'},
|
||||
{name: 'EAISVCSERNO_TMP', align: 'left', width: '220', formatter: trimFormatter},
|
||||
{name: 'KEYMGTMSGCTNT', align: 'left', width: '240'},
|
||||
{name: 'LOGPRCSSSERNO_TMP', align: 'center', width: '40'},
|
||||
{name: 'TELGMRECVTRANCD', align: 'left', width: '135', hidden: true},
|
||||
|
||||
@@ -216,7 +216,7 @@
|
||||
$(tag+"[name="+name+"]").val(data[name.toUpperCase()]);
|
||||
|
||||
//업체코드.업체명
|
||||
if(name=="companyName"){
|
||||
if(name=="eaiSvcSerno"){
|
||||
if(data["COMPANYCODE"] !=null && data["COMPANYCODE"].trim() != ''){
|
||||
$("input[name=companyName]").val("["+data["COMPANYCODE"]+"] "+data[name.toUpperCase()]);
|
||||
}
|
||||
@@ -233,6 +233,13 @@
|
||||
}
|
||||
});
|
||||
|
||||
// 거래고유번호 trim
|
||||
var $svcSernoInput = $("input[name=eaiSvcSerno]");
|
||||
|
||||
if($svcSernoInput.val()) {
|
||||
$svcSernoInput.val( $svcSernoInput.val().trim() );
|
||||
}
|
||||
|
||||
$("input[name=gstatSysAdptrBzwkGroupName],input[name=psvSysAdptrBzwkGroupName]").each(function(){
|
||||
var name = $(this).attr("name");
|
||||
if ("${rmsMenuAuth}" =="W"){ //2020.07.08 admin 만 버튼보이게 수정
|
||||
|
||||
Reference in New Issue
Block a user