RealGrid2 API
Interface
GridOptions

GridOptions

그리드의 전체 설정 정보들

Signature:

export interface GridOptions 

Remarks

GridBase.getOptions() 시 하위 구성 요소를 재설정하는 것이 불가능하다.

GridBase.setOptions() 시 하위 구성 요소를 재설정하는 것이 가능하다.

실질적인 사용은 GridView, TreeView 에서 한다.

Example

let options =  {
    summaryMode: 'aggregate',
    display: {
        columnResizable : false
    }
};
gridView.setOptions(options);

Properties

PropertyTypeDescription
checkBarCheckBar
copyCopyOptions
dataDropDataDropOptions
displayDisplayOptions
editEditOptions
editorEditorOptions
filteringFilteringOptions
filterPanelFilterPanel
fixedFixedOptions
footerGridFooter
footersGridFooterCollection
formatFormatOptions
headerGridHeader
headerSummariesHeaderSummaryCollection
headerSummaryHeaderSummary
hideDeletedRowsboolean
pastePasteOptions
rowIndicatorRowIndicator
sortingSortingOptions
sortModeSortMode
stateBarStateBar
summaryModeSummaryMode

Properties Desc

checkBar

Type - CheckBar


copy

Type - CopyOptions


dataDrop

Type - DataDropOptions


display

Type - DisplayOptions


edit

Type - EditOptions


editor

Type - EditorOptions


filtering

Type - FilteringOptions


filterPanel

Type - FilterPanel


fixed

Type - FixedOptions


footer

Type - GridFooter


footers

Type - GridFooterCollection


format

Type - FormatOptions


header

Type - GridHeader


headerSummaries

Type - HeaderSummaryCollection


headerSummary

Type - HeaderSummary


hideDeletedRows

Type - boolean


paste

Type - PasteOptions


rowIndicator

Type - RowIndicator


sorting

Type - SortingOptions


sortMode

Type - SortMode


stateBar

Type - StateBar


summaryMode

Type - SummaryMode