그룹핑 관련
Methods
(static) addGroup(columnid) → {undefined}
그룹핑을 추가합니다
Example
grid.addGroup("USER_SABUN");
Parameters:
Name | Type | Description |
---|---|---|
columnid |
string | 그룹핑할 컬럼아이디 |
Returns:
- Type
- undefined
(static) clearGroup(columnindex) → {undefined}
입력된 컬럼에 대해 그룹핑을 해제 합니다
Example
grid.clearGroup(1);
Parameters:
Name | Type | Description |
---|---|---|
columnindex |
number | 그룹핑할 컬럼 번호 |
Returns:
- Type
- undefined
(static) collapseGroup(depth) → {undefined}
지정한 깊이 이하를 접어서 보여줍니다.
Example
grid.collapseGroup("3");//3번째 이하 그룹부터 접음
Parameters:
Name | Type | Description |
---|---|---|
depth |
number | 접을 그룹 깊이 |
Returns:
- Type
- undefined
(static) expandGroup(depth) → {undefined}
지정한 깊이까지 펼쳐서 보여줍니다.
Example
grid.expandGroup(3);//3번째 하위그룹까지 펼침
Parameters:
Name | Type | Description |
---|---|---|
depth |
number | 펼칠 그룹 깊이 |
Returns:
- Type
- undefined
(static) getGroup() → {array}
그룹핑된 컬럼의 리스트를 반환합니다
Example
grid.getGroup();
Returns:
그룹핑된 컬럼아아디의 배열
- Type
- array