Hide

YetaWF Documentation

Display
Print

YetaWF_DevTests_ListOfEmailAddresses Component

YetaWF_DevTests_ListOfEmailAddresses (Display)

A sample implementation of a component that displays a list of email addresses in a grid. The model contains the list of email addresses.

Model Type: System.Collections.Generic.List<string>

The test sample page is available at Tests > Components > ListOfEmailAddresses (standard YetaWF site).

[Caption("Email Addresses"), Description("List of email addresses")]
[UIHint("YetaWF_DevTests_ListOfEmailAddresses"), ReadOnly]
public List<string> EmailAddresses { get; set; }

YetaWF_DevTests_ListOfEmailAddresses (Edit)

A sample implementation of a component that allows selecting/entering a list of email addresses in a grid. The model contains the list of email addresses.

Model Type: System.Collections.Generic.List<string>

The test sample page is available at Tests > Components > ListOfEmailAddresses (standard YetaWF site).

[Caption("Email Addresses"), Description("List of email addresses")]
[UIHint("YetaWF_DevTests_ListOfEmailAddresses")]
public List<string> EmailAddresses { get; set; }