SimpleDataPopup

Constructor

  • Parameters

    • PopupType popupType : 팝업 타입 (Grid, Tree)

    • DataTable popupData : 팝업에 표현할 데이터

    • string[] visibleColumnNames : 팝업에 나타낼 컬럼 (DataTable popupData 의 DataColumn.ColumnName)

    • string[] columnCaptions : 팝업에 나타낼 컬럼의 캡션

    • bool EnableFilter : Filter Row 활성화 여부 (Default = true)

  • 팝업 타입(PopupType popupType)이 Tree일때 팝업 데이터(DataTable popupData)의 첫번째 DataColumn.ColumnName이 TreeList.KeyFieldName, 두번째 DataColumn.ColumnName이 TreeList.ParentFieldName로 자동 설정

public SimpleDataPopup(PopupType popupType, DataTable popupData, string[] visibleColumnNames, string[] columnCaptions, bool EnableFilter = true);

Property

ResultDataRow

  • 팝업에서 선택한 결과 DataRow

public DataRow ResultDataRow { get; }

Enum

PopupType

Example

Grid Type

Grid Type 팝업 화면

Tree Type

Tree Type 팝업 화면

Last updated