New
1. 셀 데이터 복사 시 행 끝에 붙던 \r\n을 제거하는 (Cfg) NoCRLF 옵션 추가
기존 Excel 동작과 동일하게 복사 붙여넣기 시 행 마지막에 \r\n이 붙도록 설계가 되었습니다.
이 \r\n를 제거하고자 하는 요건이 존재하여 컨트롤 가능한 (Cfg)NoCRLF 가 추가되었습니다.
NoCRLF:true 를 사용하면 행 끝 줄바꿈이 제거됩니다.
여러 셀 선택 또는 데이터 내 줄바꿈에 의한 줄바꿈은 기존과 동일하게 유지됩니다.
[사용 예시]
options.Cfg = { NoCRLF: true // 복사 시 행 끝 \r\n 제거 }; |
Fixed
1. SearchMode:0 + ShowFilter:1 필터행에 값 입력 후 loadSearchData 재조회 시 시트가 깨지던 현상 수정
2. SearchMode:0 + AutoRowHeight 시트에서 스크롤바를 잡고 내릴 때 스크롤이 흔들리던 현상 개선
3. VAlign:Top 설정된 세로 머지된 Enum 셀에 값이 없을 때 드롭다운 리스트가 머지 영역 맨 아래에 펼쳐지던 현상 수정
4. 4.0.0 이후 SearchMode:0 조회 중 별도 로딩 스피너가 표시되던 현상 제거
[CSS 제거]
각 테마별 css에서 아래 규칙이 제거되었습니다.
/* 각 테마 css 제거 */ /* @keyframes ibspin{to{transform:rotate(360deg)} } // .IBLoadingOverlay{position:fixed;background:rgba(255,255,255,0.45);display:flex;align-items:center;justify-content:center} // .IBLoadingBox{display:flex;align-items:center;gap:10px;padding:12px 24px;background:#fff;border-radius:6px;box-shadow:0 2px 12px rgba(0,0,0,0.15);font-size:13px;color:#333} // .IBLoadingSpinner{width:22px;height:22px;border:3px solid rgba(0,0,0,0.12);border-left-color:#1a73e8;border-radius:50%;animation:ibspin .7s linear infinite;flex-shrink:0} */ |