domain

속성 타입 : ModelContext

Attribute Type : ModelContext

지원 타입 : column

Supported Type : column

컬럼(column)은 도메인(domain)과 연결되어 있을 수 있습니다. 도메인 속성을 얻거나 지정할 때 사용하는 속성입니다.
Column may be connected to a domain. These are used to get or set the attributes of the domain.

값 얻기

Getter

현재 모델 컨텍스트의 도메인을 얻습니다.
// 컬럼의 도메인 명을 화면에 출력
var column = ...;
log(column.get("domain").get("name"));

Gets the domains of the current model context.
// Output the domain of column name in screen.
var column = ...;
log(column.get("domain").get("name"));

현재 모델 컨텍스트의 도메인을 얻습니다.
// 컬럼의 도메인 명을 화면에 출력
var column = ...;
log(column.get("domain").get("name"));

Gets the domains of the current model context.
// Output the domain of column name in screen.
var column = ...;
log(column.get("domain").get("name"));

값 지정

Setter

Specifies a domain. Possible to pass the domain name and the model context containing the domain as a parameter.
ctx.set("domain", "Character");
or
// Select the domain that the name is  a "character".
var domain = select(function(it){
	return it.get("type") == "domain" && it.get("name") == "Character";
});

ctx.set("domain", domain);
도메인을 지정합니다. 도메인 이름 및 도메인을 담은 모델 컨텍스트를 인자로 줄 수 있습니다.
ctx.set("domain", "문자");
또는
// 이름이 "문자"인 도메인을 선택함.
var domain = select(function(it){
	return it.get("type") == "domain" && it.get("name") == "문자";
});

ctx.set("domain", domain);
Specifies a domain. Possible to pass the domain name and the model context containing the domain as a parameter.
ctx.set("domain", "Character");
or
// Select the domain that the name is  a "character".
var domain = select(function(it){
	return it.get("type") == "domain" && it.get("name") == "Character";
});

ctx.set("domain", domain);
도메인을 지정합니다. 도메인 이름 및 도메인을 담은 모델 컨텍스트를 인자로 줄 수 있습니다.
ctx.set("domain", "문자");
또는
// 이름이 "문자"인 도메인을 선택함.
var domain = select(function(it){
	return it.get("type") == "domain" && it.get("name") == "문자";
});

ctx.set("domain", domain);