picklist_expr_func 속성 가이드

이 화면은 콤보박스 picklist_expr_func 속성 예시 화면이다.

관련 속성으로 picklist_expr_func가 있다.

관련 API로 getpicklistexprfunc, setpicklistexprfunc가 있다.

템플릿 위치: /HTML5/COMPONENT/COMBOBOX/combobox_exprfunc

템플릿 파일

/**
 * 픽리스트 선택/목폭 표시 처리 사용자 정의 함수
 * @param objScreen 화면 인스턴스
 * @param objComponent 컴포넌트 인스턴스
 * @param strCode 코드 값
 * @param strComment 코멘트 값
 * @param nRow 행 인덱스 (Zero-Based) (필드인 경우, -1)
 * @param nSubRow 서브행 인덱스 (Zero-Based) (필드인 경우, -1)
 * @param nColumn 열 인덱스 (Zero-Based) (필드인 경우, -1)
 * @returns 코드_정보_오브젝트 또는 null/undefined
 * 	null/undefined - 리턴값이 무시됨
 * 	코드_정보_오브젝트 - 리턴값에 정의된 정보 사용 (아래 샘플 소스 참조)
 */
function PicklistExprFunc(objScreen, objComponent, strCode, strComment, nRow, nSubRow, nColumn)
{
	// 코드_정보_오브젝트
	var retInfo = {
		code: undefined,	// undefined 지정시 값 사용되지 않음
		comment: undefined  // undefined 지정시 값 사용되지 않음
	};

	factory.consoleprint("parameter> " + strCode + ", " + strComment );

	// 코멘트의 앞 2자리만 표시하고 "****"로 표시
	retInfo.comment = strComment.substring(0, 2) + "****";

	// 값 없이 리턴시 아무런 동작을 수행하지 않음
	// return;

	return retInfo;
}

// "setpicklistexprfunc" 버튼 이벤트
function btn_setpicklistexprfunc_on_click(objInst)
{
	var picklist_expr_func;

	picklist_expr_func = this.cbo.getpicklistexprfunc();
	if (picklist_expr_func) {
		// 픽리스트 필터 함수 사용 안함 처리
		this.cbo.setpicklistexprfunc("");
	}
	else {
		// 픽리스트 필터 함수 지정
		this.cbo.setpicklistexprfunc("PicklistExprFunc");
	}
}

  • guide/component/combobox/combobox_exprfunc.txt
  • 마지막으로 수정됨: 2024/01/11 16:45
  • 저자 127.0.0.1