IDataItems Interface
Interface for FormItem that contain a collection of DataItem such as ComboBoxFormItem.

Namespace: Geocortex.Forms.Client.Items
Assembly: Geocortex.EssentialsWpfApi (in Geocortex.EssentialsWpfApi.dll) Version: 2.19.1
Syntax
public interface IDataItems

The IDataItems type exposes the following members.

Properties
  NameDescription
Public propertyDataItems
Gets the data items.
Top
Remarks
1) If DataItems are added directly to the Form Item when designing a from, these items will be displayed through binding on the control. 2) If collections of DataItems (InputData) are passed in to the form definition, they will be added to the DataItems (added, not replacing). Data binding should take care of showing those. 3) If a query has been defined on the form item, it will be performed. The data coming back will replace any data already set in 1) or 2) (by assigning a new collection to ItemSource on the actual control).
See Also