728x90
반응형


function Grid1_OnCellDblClick(obj,nRow,nCell,nX,nY,nPivotIndex)
{
var strGbn = ""; //조회구분

var strArgs = " SRCH_GBN=" + quote("1"); //조회구분
strArgs += " ACTS_SLIP_YMD=" quote(DS_LIST.GetColumn(nRow,"ACTS_SLIP_YMD)); //전표일자
strArgs +="BZ_DLNG_DPT_COD=" + quote(edtDlngBrofcCod.value);
strArgs += "BZ_SYS_SECD=" + quote(DS_LIST.GetColumn(nRow, 'BZ_SYS_SECD")) //업무구분

var rtnValue = Dialog("fh_close::MmCloIndvcsSlipGrthg.xml", strArgs, 528, 536, "true");

}

//팝업화면 으로 파라미터값넘기기 & 사이즈 조절





728x90
반응형
728x90
반응형

개정중...

사용빈도가 높은 함수.

--> 화면발췌()
1.quote() <-> unquote()
2.object()
3.trace()
4.confirm()
ex) if(!confirm("모든 내용이 초기화 됩니다. 선택 하시겠습니까?)) return;
5.pos()
6.toNumber()
7.substr()
8.length()

-->공통발췌(eGISGlob##al###)
1.toLower() <-> toUpper()
2.decode()
3.urlDecode()
4.split()
5.type()
6.indexOf()
7.left()
8.isValidObject()
9.isValid()
10.replace()
11.rpad()
12.parseInt()
13.addMonth()
14.addDate()
15.floor()
16.round()


 

728x90
반응형
728x90
반응형


gridID.setReadOnly("column", "aprvorUserId',true);
gridID.setDisabledOnly("column", "aprvorUserId',true);

gridID.getColumnIndex("aprvorUserID"); //컬럼ID
gridID.getCellData(row, "cnfrAprvDvcd") == "1"){}
// row,col에 해당되는 데이터 가져오기

gridID.getCheckedIndex("chk");
//check된 행의 index를 배열로 반환한다.

gridID.setEventPause("이벤트명(onrowindexchange",false);
//onrowindexchange 이벤트를 정지시킨다.
//setEventPause(evList, flag)
//evList = 중단할 이벤트 목록
//flag = 이벤트 중단 여부 (true: 중단, false : 중단해제)

gridID.setFocusedCell(idx, "setlProgStageDvcd",true);
//그리드의 특정 셀로 포커스를 이동한다.
//setFocusedCell(rowIndex, colIndex, editMode)
//editMode = 포커스를 이동한 후에 editMode로 전환할지 여부


gridID.getRowCount();
//그리드의 데이터 row의 건수를 반환합니다.






728x90
반응형

+ Recent posts