반응형

Nexacro 4

[Nexacro 17] 팝업 자식창에서 부모창으로 다시 값 넘겨주기

팝업창안에서 this.parent.opener.parentArr["id"] = "0005"; 를 해주고 this.fn_select_confirm = function() { var param = new Array(); if(this.ds_customerInfo_list.findRow("ROW_CHK","1")>=0) { param["custTel"] = "1234"; this.cmn_openPopUpWindow("POPUP0005","POPUP0005.xfdl",500,335,"modal",param,'callbackFunc_pop'); } else this.alert("선택한 항목이 없습니다"); } this.callbackFunc_pop = function(strID, variant) { switch(..

IT/Nexacro 17 2022.07.15

[NEXACRO 17] 그리드 컬럼명(Head)이 dataset 컬럼명에 따라 변경되게 만들기

그리드에 첫 컬럼은 무조건 '구분' 마지막 컬럼은 무조건 '총계'인 그리드가 있다. 첫컬럼과 마지막 컬럼 사이에 들어오는 컬럼 명들은 무슨 값이 몇개가 들어올지 모르는 상황이다. 데이터셋에 총계와 구분을 제외한 데이터가 다섯개가 조회된다면 넥사 그리드에도 그 다섯개 데이터명을 컬럼명으로 설정해야했다. //폼로드시 this.formOnload = function(obj:nexacro.Form,e:nexacro.LoadEventInfo) { //getCurFormatString()을 사용하여 현재 그리드의 상태를 저장 nexacro.setPrivateProfile("GridA",this.Tabpage.form.GridA.getCurFormatString()); } //트랜잭션이 일어난 후 Callback t..

IT/Nexacro 17 2022.05.04
반응형