Fixed

- 찾기 다이얼로그 UI 수정으로 인해 불필요해진 css 제거

수정 전

.IBFindDlgBottom{padding:6px 5px 10px 5px;box-sizing:border-box;width:100%;}
.IBFindDlgBottom div:first-child{float:left;width:50%}
.IBFindDlgBottom div:last-child{float:right;width:50%}
.IBFindDlgBottom button{margin-left:5px;padding: 4px 5px 4px 5px;font-size: 13px; line-height: 18px;text-decoration: none;cursor:pointer;}


수정 후
.IBFindDlgBottom{padding:6px 5px 10px 5px;box-sizing:border-box;width:100%;}

// .IBFindDlgBottom div:first-child{float:left;width:50%}
// .IBFindDlgBottom div:last-child{float:right;width:50%}


.IBFindDlgBottom button{margin-left:5px;padding: 4px 5px 4px 5px;font-size: 13px; line-height: 18px;text-decoration: none;cursor:pointer;}


.IBFindDigBottom div:first-child, .IBFindDigBottom div:last-child 제거


- onReceiveData 이벤트에서 return 1(true) 할 경우 시트 이벤트를 중단하도록 기능 개선.


onReceiveData: function(evtParam){
var DATA = evtParam.data;
var parseData = JSON.parse(DATA);

if (parseData.data.length>2) {
return parseData;
}
else {
 //onReceiveData 이벤트 중단
return 1;

}
}


- 필터행에는 Button 속성 적용되지 않도록 수정


[수정 전]

Text 컬럼의 필터행에도 Button 속성이 적용


[수정 후]

필터행에 Button 속성 적용 X


- (Cfg) AutoRowHeight : true 를 설정한 상태에서 TextSize 를 설정하거나 TextSizeFormula 를 설정하여 행 너비가 늘어났을 때 스크롤 계산이 제대로 되지 않는 현상 수정


[수정 전]

스크롤이 바닥에 붙었음에도 불구하고 데이터가 정상적으로 보이지 않음

(스크롤 계산이 잘못되어서 데이터가 더 있지만 스크롤을 내리는 것이 불가능)


[수정 후]

정상적으로 스크롤 계산이 이루어짐


- doSearchPaging 의 param 인자가 없을 경우 iborderby 파라미터가 서버로 전송되지 않는 현상 수정


param을 빈값으로 처리한 뒤 헤더를 눌러 정렬시킴


[수정 전]

> page 와 pagelength 만 서버로 전송 됨


[수정 후]

> page 와 pagelength, orderbyh 모두 정상적으로 서버 전송



- (Cfg) SearchMode : 1 사용 중 findRows 로 데이터를 검색할 때 다음 페이지의 데이터가 검색되지만 페이지는 이동하지 않는 현상 수정


[수정 전]

1페이지의 마지막 검색 데이터에서 다음 데이터를 검색할 때 포커스 자체는 다음 페이지의 데이터로 이동하지만,

페이지는 이동을 하지않음


[수정 후]

다음 검색 데이터가 있는 페이지로 이동 함



- findRows 로 데이터 검색 시 Type : Data 컬럼에서 EmptyValue(null) 가 검색되는 현상 수정


- 모바일 모드에서 멀티라인 레코드 행이 한번에 선택되지 않는 현상 수정