Class TrDBCheckListBoxEx
Unit
rDBComponents
Declaration
type TrDBCheckListBoxEx = class(TrDBCheckListBox)
Description
enhanced TrDBCheckListBox component for n:m relationship which provides links to ListDataSource and ValueDataSource for automatic work with checklistbox
Hierarchy
Overview
Methods
Properties
|
property ListSource: TDataSource read GetListSource write SetListSource; |
|
property ListKeyField: string read FListKeyFieldName write FListKeyFieldName; |
|
property ListDisplayField: string read FListDisplayFieldName write FListDisplayFieldName; |
|
property ValuesSource: TDataSource read GetValuesSource write SetValuesSource; |
|
property ValuesDataKeyField: string read FValuesDataKeyField write FValuesDataKeyField; |
|
property ValuesListKeyField: string read FValuesListKeyField write FValuesListKeyField; |
Description
Methods
|
procedure DoLoadItemList; override; |
load list of available items to FAllItemsList
|
|
procedure DoLoadItemValues; override; |
load and set state (check/uncheck) of all items
|
|
procedure DoSaveItemValues; override; |
store state (check/uncheck) of all items
|
Properties
|
property ListSource: TDataSource read GetListSource write SetListSource; |
define datasource with List of Items in listbox
|
|
property ListKeyField: string read FListKeyFieldName write FListKeyFieldName; |
define Key (ID) Field from ListSource
|
|
property ListDisplayField: string read FListDisplayFieldName write FListDisplayFieldName; |
define displayed Fields from ListSource, Fields or "constants" are separated by ;
|
|
property ValuesDataKeyField: string read FValuesDataKeyField write FValuesDataKeyField; |
define Key (ID) Field for DataSource key value
|
|
property ValuesListKeyField: string read FValuesListKeyField write FValuesListKeyField; |
define Key (ID) Field for ListSource key value
|
Generated by PasDoc 0.15.0.
|