- Description:
nexacro 컴포넌트들의 최상위 Object 객체입니다. 이 문서는 nexacro._EventSinkObject에 추가된 메소드를 문서화하기 위한 임시 섹션입니다.
nexacro 컴포넌트들의 최상위 Object 객체입니다. 이 문서는 nexacro._EventSinkObject에 추가된 메소드를 문서화하기 위한 임시 섹션입니다.
Members
(readonly) ancestor :nexacro.FormBase
- Description:
해당 컴포넌트를 표현중인 Frame의 form객체
- Deprecated:
- 유틸리티를 사용 바랍니다.$comp.getWorkForm
해당 컴포넌트를 표현중인 Frame의 form객체
Type:
Example
var button = this.Button00;
var mainForm = button.ancestor;
(readonly) fullPath :nexacro.FormBase
- Description:
해당 컴포넌트의 완전경로
- Deprecated:
- 유틸리티를 사용 바랍니다.$comp.getFullPath
해당 컴포넌트의 완전경로
Type:
Example
var button = this.Button00;
var path = button.fullPath;
(readonly) wrapElem :nexacro.Component
- Description:
해당 화면을 감싸고 있는 프레임 레벨의 컴포넌트
- Deprecated:
- 유틸리티를 사용 바랍니다.$comp.getWrapElem
해당 화면을 감싸고 있는 프레임 레벨의 컴포넌트
Type:
- nexacro.Component
Methods
getFormPath(form) → {string}
- Description:
특정 Component로 부터의 경로 값
- Deprecated:
- 유틸리티를 사용 바랍니다.$comp.getFormPath
Example
var button = this.Button00;
var path = button.getFormPath(this);
Parameters:
| Name | Type | Description |
|---|---|---|
form |
nexacro.FormBase | 경로를 가져오기 시작할 form |
Returns:
경로 문자열
- Type
- string