그리드 표시에 대한 전반적인 속성들을 관리하는 객체다.
GridBase.displayOptions 속성으로 사용된다. 그리드 초기화 시 내부적으로 생성되므로 이 클래스 객체를 직접 생성할 일은 없다.
grid.setOptions({
display: {
selectStyle: "rows",
wheelDelta: 5,
fixedColumnCount: 2
}
});
grid.setDisplayOptions({
columnMovable: true,
columnResizable: true,
fixedRowCount: 2
});