DataListRowTemplate Property
The template control type to use for rows in the data source
Namespace: EWSoftware.ListControlsAssembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.18.0+3a863295c73252b22e8ab6862ed6bdc57bcbd0fc
public Type? RowTemplate { get; set; }
Public Property RowTemplate As Type
Get
Set
public:
property Type^ RowTemplate {
Type^ get ();
void set (Type^ value);
}
member RowTemplate : Type with get, set
Property Value
Type One row template will be created for each row in the data source. Rows are initialized and
bound as they are scrolled into view to improve performance. This property must be set in order to
edit information in the data source.
// AddressTemplate is a user control derived from TemplateControl
dataList.RowTemplate = typeof(AddressTemplate);
' AddressTemplate is a user control derived from TemplateControl
dataList.RowTemplate = GetType(AddressTemplate)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.