nexacro.Form

nexacro.Form

Description:
  • nexacro 폼 객체입니다. 이 문서는 nexacro.Form에 추가된 메소드를 문서화하기 위한 임시 섹션입니다.

nexacro 폼 객체입니다. 이 문서는 nexacro.Form에 추가된 메소드를 문서화하기 위한 임시 섹션입니다.

Members

Description:
  • 해당 프로그램의 menuId

Deprecated:

해당 프로그램의 menuId

Type:
  • string
Description:
  • 해당 프로그램의 menuNm

Deprecated:

해당 프로그램의 menuNm

Type:
  • string

pgmPath :string

Description:
  • 해당 Form의 프로그램 경로

Deprecated:

해당 Form의 프로그램 경로

Type:
  • string

workInfoDataset :nexacro.Dataset

Description:
  • 해당 work화면의 정보를 담은 Dataset

Deprecated:

해당 work화면의 정보를 담은 Dataset

Type:
  • nexacro.Dataset

(static, readonly) pop :nexacro.EzPopup

Description:
  • form에 속한 EzPopup객체

form에 속한 EzPopup객체

Type:

(static, readonly) tx :nexacro.EzTrans

Description:
  • form에 속한 EzTrans객체

form에 속한 EzTrans객체

Type:
  • nexacro.EzTrans

(static, readonly) virtual :nexacro.EzVirtual

Description:
  • Form에 속한 EzVirtual객체

Form에 속한 EzVirtual객체

Type:

Methods

getMainTitle() → {nexacro.EzTitlebar}

Description:
  • 해당 폼 화면의 공통타이틀바를 가져옵니다.

Deprecated:
Example
var tit = $comp.getMainTitle(this);
Returns:

메인타이틀바

Type
nexacro.EzTitlebar

getParam() → {nexacro.Dataset}

Description:
  • 프로그램 파라미터를 가져온다
    프로그램 파라미터는 프로그램 등록 화면에서 등록한 파라미터를 의미합니다

Deprecated:
Example
this.param = this.getParam();
Returns:

파라미터 정보

Type
nexacro.Dataset

getParamStr() → {nexacro.Dataset}

Description:
  • 프로그램 파라미터를 원본 xml문자열 형태 가져온다
    프로그램 파라미터는 프로그램 등록 화면에서 등록한 파라미터를 의미합니다

Deprecated:
Example
var paramStr = this.getParamStr();
Returns:

파라미터 정보

Type
nexacro.Dataset

getUserParam 사용자 파라미터를 읽어온다.() → {Object}

Description:
  • 사용자 파라미터는 특정 화면에서 다른 화면을 호출 할 때 보내는 파라미터를 의미합니다
    ex) popup호출시 arg 옵션

Deprecated:
Example
var param = this.getUserParam();
Returns:

파라미터 정보

Type
Object