728x90

AIReport - Cell 속성 동적으로 수정하기

출처 : AI Report Manual

해당 Cell에서 오른쪽 클릭 메뉴 Property Script  선택

Cell Propety Script 수정

Cell Property Script

if (user_data_list_num == user_data_list_r_count)
{
	CELL_PROPERTY_1
}

CELL_PROPERTY_1

bottomBorderWidth="1"
728x90
728x90

AIReport - Cell의 출력되는 변경하기

출처 : AI Report Manual

일련번호 출력시 index가 0부터 실행되어 해당 필드의 자료형을 숫자형(int)로 설정하고 스크립트로 index + 1 하여 1부터 출력되도록 작성

UDS 설정시 필드의 자료형 숫자형(INT)으로 수정

셀 스크립트 수정

//데이터 변수 할당
sheet20_A4 = user_data_list_num;

sheet20_A4 = user_data_list_num + 1;
728x90
728x90

AIReport - 조건에 따라서 시트 보여짐 수정

출처 : AI Report Manual

파라미터 조건에 따라서 해당 시트를 숨기도록 하기

현재 Sheet 설정

[실행조건] 수정 선택

Sheet 실행조건 스크립트

if(survey_date_Param.length()<8)
{
	SHEET_PROPERTY_1
}
else
{
	return;
}
728x90

+ Recent posts