728x90 반응형 NEXACRO 172 NEXACRO 로딩이미지 보여주기 업무처리 로딩이미지 // 로딩이미지 보여주기 this.Button00_onclick = function(obj,e) { //실제로는 callback function 등을 이용한다. this.setWaitCursor(true); }; // 로딩이미지 없애기 this.Button00_onclick = function(obj,e) { this.setWaitCursor(false); }; 2023. 11. 23. 스크립트 중복 데이터 제거 FOR문 FOR문 중복 제거 for(i = 0; i < this.popupList.rowcount; i++) { var duflag = false; for(j = 0; j < this.grid.rowcount; j++) { if( this.grid.getColumn(j, "ID") == this.popupList.getColumn(i, "ID")){ duflag= true; } } //중복이 아닐경우 입력 if(!duflag){ var idx = this.grid.addRow(); this.grid.setColumn(idx, "ID", this.popupList.getColumn(i, "ID")); this.grid.setColumn(idx, "NAME", this.popupList.getColumn(i, "NA.. 2023. 4. 25. 이전 1 다음 728x90 반응형