20230417 - IG 엔터 입력한대로 줄바꿈으로 보이기

IG에서 특별한 조건없이 입력하고 조회하면 엔터(줄바꿈)를 입력해도 한 줄로 표현이 됨



엔터(줄바꿈)을 입력한대로 여러 줄을 표현하려면

Column >> Column Initialization JavaScript Function


function(config) {
  config.defaultGridColumnOptions = {
    cellTemplate: "<span class='cell-wrap'>&NOTE.</span>"
  };
  return config;
}


* pre 태그로 진행하다가 기존 다른 항목들과 text format이 달라져 span 태그로 진행


페이지 CSS


.cell-wrap {
   white-space: pre-wrap;
   margin: 0;
}


결과




댓글 없음:

댓글 쓰기

20250315 - 글로벌 변수 Global Variables

G_USER Specifies the currently logged in user. G_FLOW_ID Specifies the ID of the currently running application. G_FLOW_STEP_ID Specifi...