table (Table)

테이블을 구성하는 요소를 얻기 위해 스텝-인 탐색을 이용할 수 있습니다:

// 특정 테이블 담은 모델 컨텍스트
var tableCtx = ...;

tableCtx.select(function(it){
	return it.get("type" == "column");
});

You can use the navigation step by step to get the elements that make up the table:

// Context of the model that contain a particular table
var tableCtx = ...;

tableCtx.select(function(it){
	return it.get("type" == "column");
});

지원 속성

Supported Types