SMART datagrid v1.4 > Classes

Back  Forward

DataLudi.DisplayOptions  class

그리드 표시에 대한 전반적인 속성들을 관리하는 객체다. 

GridBase.displayOptions 속성으로 사용된다. 그리드 초기화 시 내부적으로 생성되므로 이 클래스 객체를 직접 생성할 일은 없다. 

Base Classes
GridBaseOptions > DLBase
Constructor
function DisplayOptions (grid: GridBase);
Properties
alertCellError
bubbleWheelEvents
checkChildColumnResizable
checkDataInited
columnExcludable
columnMovable
columnResizable
contextMenuStyles
cursorCallback
defaultColumnWidth
emptyDataMessage
emptyGridMessage
fillWhenResized
fitRowHeightWhenDisplay
fitRowHeightWhenUpdated
fitStyle
fixedColumnCount
fixedColumnExcludable
fixedColumnMovable
fixedColumnResizable
fixedRowCount
fixedRowResizable
focusable
focusBorder
focusVisible
forceButtonVisible
heightMeasurer
hideBordersWhenFitted
hideColumnWhenExcluded
hideDeletedRows
hintDuration
horzLiveScroll
horzScrollPageUnit
horzScrollStep
horzWheelDelta
includeHeaderWhenFitColumn
liveScroll
maxRowHeight
mergedSelection
minRowHeight
nanText
parentChangable
preventSystemMenu
rightClickable
rowChangeDelay
rowFocusMask
rowHeight
rowHoverMask
rowResizable
selectDisplay
selectMode
selectStyle
showSingleSelection
showTooltip
summaryMode
tooltipAnimation
tooltipDelay
tooltipDuration
tooltipLineBreak
tooltipMaxWidth
tooltipMinWidth
tooltipStyles
variableRowHeight
wheelDelta
Inherited Properties
GridBaseOptions.grid
Inherited Methods
DLBase.assign
GridBaseOptions.ctor
DLBase.getProperties
DLBase.getProperty
DLBase.setProperties
DLBase.setProperty
DLBase.toggle

 

Code -1
    grid.setOptions({
        display: {
            selectStyle: "rows",
            wheelDelta: 5,
            fixedColumnCount: 2
        }
    });
Code -2
    grid.setDisplayOptions({
        columnMovable: true,
        columnResizable: true,
        fixedRowCount: 2
    });
See Also
GridBase.displayOptions
GridBase.setOptions
GridBase.editOptions
GridBase.operateOptions
EditOptions
OperateOptions
Examples
Hello Grid